nixpkgs/pkgs/tools/security/signify/default.nix
2021-01-21 05:49:15 -05:00

35 lines
856 B
Nix

{ lib, stdenv, fetchFromGitHub, libbsd, pkg-config }:
stdenv.mkDerivation rec {
pname = "signify";
version = "30";
src = fetchFromGitHub {
owner = "aperezdc";
repo = "signify";
rev = "v${version}";
sha256 = "02xh6x6rszkvk3rf6zai7n3ivchmw0d8mwllpinjxc7k6sd415c3";
};
doCheck = true;
nativeBuildInputs = [ pkg-config ];
buildInputs = [ libbsd ];
preInstall = ''
export PREFIX=$out
'';
meta = with lib; {
description = "OpenBSD signing tool";
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;
};
}