-
-
Notifications
You must be signed in to change notification settings - Fork 14.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
config-store: init at 1.0.0 (#363701)
* 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
1 parent
6cec999
commit 83b3052
Showing
2 changed files
with
36 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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"; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 ]; | ||
}; | ||
} |