blast: fix and enable strictDeps (#366620)
[NixPkgs.git] / pkgs / by-name / mo / monocypher / package.nix
blobf7e4eb9ff568c47aaf3b8cec7803bc88ed40347e
2   lib,
3   stdenv,
4   fetchurl,
5 }:
7 stdenv.mkDerivation rec {
8   pname = "monocypher";
9   version = "4.0.2";
11   src = fetchurl {
12     url = "https://monocypher.org/download/monocypher-${version}.tar.gz";
13     hash = "sha256-ONBxeXOMDJBnfbo863p7hJa8/qdYuhpT6AP+0wrgh5w=";
14   };
16   installFlags = [ "PREFIX=$(out)" ];
18   doCheck = true;
20   meta = with lib; {
21     description = "Boring crypto that simply works";
22     homepage = "https://monocypher.org";
23     license = with licenses; [
24       bsd2
25       cc0
26     ];
27     platforms = platforms.linux;
28     maintainers = with maintainers; [ sikmir ];
29   };