Skip to content

Commit

Permalink
config-store: init at 1.0.0 (#363701)
Browse files Browse the repository at this point in the history
* maintainers: add dod-101

* config-store: init at 1.0.0

Co-authored-by: seth <[email protected]>

---------

Co-authored-by: David Thievon <[email protected]>
Co-authored-by: seth <[email protected]>
  • Loading branch information
3 people authored Dec 11, 2024
1 parent 6cec999 commit 83b3052
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 0 deletions.
6 changes: 6 additions & 0 deletions maintainers/maintainer-list.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5829,6 +5829,12 @@
githubId = 129093;
name = "Desmond O. Chang";
};
dod-101 = {
email = "[email protected]";
github = "DOD-101";
githubId = 131907205;
name = "David Thievon";
};
domenkozar = {
email = "[email protected]";
github = "domenkozar";
Expand Down
30 changes: 30 additions & 0 deletions pkgs/by-name/co/config-store/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
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 ];
};
}

0 comments on commit 83b3052

Please sign in to comment.