Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
44 lines
990 B
Nix
44 lines
990 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
libbsd,
|
|
pkg-config,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "signify";
|
|
version = "32";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "aperezdc";
|
|
repo = "signify";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-y2A+Szt451CmaWOc2Y2vBSwSgziJsSnTjNClbdyxG2U=";
|
|
};
|
|
|
|
doCheck = true;
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [ libbsd ];
|
|
|
|
postPatch = ''
|
|
substituteInPlace Makefile --replace "shell pkg-config" "shell $PKG_CONFIG"
|
|
'';
|
|
|
|
installFlags = [ "PREFIX=$(out)" ];
|
|
|
|
meta = with lib; {
|
|
description = "OpenBSD signing tool";
|
|
mainProgram = "signify";
|
|
longDescription = ''
|
|
OpenBSDs signing tool, which uses the Ed25519 public key signature system
|
|
for fast signing and verification of messages using small public keys.
|
|
'';
|
|
homepage = "https://www.tedunangst.com/flak/post/signify";
|
|
license = licenses.isc;
|
|
maintainers = [ maintainers.rlupton20 ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|