mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
rsign2: init at 0.6.2
This commit is contained in:
parent
435e4d9793
commit
56c565bb11
24
pkgs/tools/security/rsign2/default.nix
Normal file
24
pkgs/tools/security/rsign2/default.nix
Normal file
@ -0,0 +1,24 @@
|
||||
{ lib
|
||||
, rustPlatform
|
||||
, fetchCrate
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "rsign2";
|
||||
version = "0.6.2";
|
||||
|
||||
src = fetchCrate {
|
||||
inherit pname version;
|
||||
hash = "sha256-Ono7cKXccYMmkrlsJ+Z85w8z0fEduuEQhRlHQQk0vzU=";
|
||||
};
|
||||
|
||||
cargoHash = "sha256-Yuf4iTWGQp/1ZUVqaR0tKfFxKJ9JEmMLq1LL7gwf6w0=";
|
||||
|
||||
meta = with lib; {
|
||||
description = "A command-line tool to sign files and verify signatures";
|
||||
homepage = "https://github.com/jedisct1/rsign2";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ figsoda ];
|
||||
mainProgram = "rsign";
|
||||
};
|
||||
}
|
@ -5695,6 +5695,8 @@ with pkgs;
|
||||
|
||||
rsbkb = callPackage ../tools/text/rsbkb { };
|
||||
|
||||
rsign2 = callPackage ../tools/security/rsign2 { };
|
||||
|
||||
rsyslog = callPackage ../tools/system/rsyslog {
|
||||
withHadoop = false; # Currently Broken
|
||||
withKsi = false; # Currently Broken
|
||||
|
Loading…
Reference in New Issue
Block a user