Unverified Commit 83b30524 authored by David Thievon's avatar David Thievon Committed by GitHub
Browse files

config-store: init at 1.0.0 (#363701)



* maintainers: add dod-101

* config-store: init at 1.0.0

Co-authored-by: default avatarseth <getchoo@tuta.io>

---------

Co-authored-by: default avatarDavid Thievon <pkfan@gmail.com>
Co-authored-by: default avatarseth <getchoo@tuta.io>
parent 6cec999b
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -5829,6 +5829,12 @@
    githubId = 129093;
    name = "Desmond O. Chang";
  };
  dod-101 = {
    email = "david.thievon@proton.me";
    github = "DOD-101";
    githubId = 131907205;
    name = "David Thievon";
  };
  domenkozar = {
    email = "domen@dev.si";
    github = "domenkozar";
+30 −0
Original line number Diff line number Diff line
{
  rustPlatform,
  fetchFromGitHub,
  lib,
}:
rustPlatform.buildRustPackage rec {
  pname = "config-store";
  version = "1.0.0";

  src = fetchFromGitHub {
    owner = "DOD-101";
    repo = "config-store";
    tag = "v${version}";
    hash = "sha256-dmFIB9tVI5/hnI+VKeawFzKi6UJrRis0tpeQE5a5dGU=";
  };

  cargoHash = "sha256-tEhk6vDan5uaP1vvKanB+juKsGJndrJPP67kudds24s=";

  meta = {
    description = "Simple key-value store designed to be used from shell scripts written in Rust";
    homepage = "https://github.com/DOD-101/config-store";
    mainProgram = "config-store";
    license = with lib.licenses; [
      mit
      asl20
    ];
    platforms = lib.platforms.unix;
    maintainers = with lib.maintainers; [ dod-101 ];
  };
}