depot/third_party/nixpkgs/pkgs/by-name/mo/monocypher/package.nix

30 lines
592 B
Nix

{
lib,
stdenv,
fetchurl,
}:
stdenv.mkDerivation rec {
pname = "monocypher";
version = "4.0.2";
src = fetchurl {
url = "https://monocypher.org/download/monocypher-${version}.tar.gz";
hash = "sha256-ONBxeXOMDJBnfbo863p7hJa8/qdYuhpT6AP+0wrgh5w=";
};
installFlags = [ "PREFIX=$(out)" ];
doCheck = true;
meta = with lib; {
description = "Boring crypto that simply works";
homepage = "https://monocypher.org";
license = with licenses; [
bsd2
cc0
];
platforms = platforms.linux;
maintainers = with maintainers; [ sikmir ];
};
}