nixpkgs/pkgs/tools/security/signify/default.nix
2021-01-16 23:49:59 -08:00

35 lines
856 B
Nix

{ lib, stdenv, fetchFromGitHub, libbsd, pkg-config }:
stdenv.mkDerivation rec {
pname = "signify";
version = "25";
src = fetchFromGitHub {
owner = "aperezdc";
repo = "signify";
rev = "v${version}";
sha256 = "0zg0rffxwj2a71s1bllhrn491xsmirg9sshpq8f3vl25lv4c2cnq";
};
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;
};
}