depot/third_party/nixpkgs/pkgs/development/libraries/monocypher/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

23 lines
569 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 ];
};
}