config-store: init at 1.0.0 (#363701)

* maintainers: add dod-101

* config-store: init at 1.0.0

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

---------

Co-authored-by: David Thievon <pkfan@gmail.com>
Co-authored-by: seth <getchoo@tuta.io>
This commit is contained in:
David Thievon
2024-12-11 00:58:49 -05:00
committed by GitHub
co-authored by David Thievon seth
parent 6cec999bb1
commit 83b3052499
2 changed files with 36 additions and 0 deletions
+6
View File
@@ -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
View File
@@ -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 ];
};
}