nixpkgs/pkgs/development/libraries/monocypher/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
581 B
Nix
Raw Normal View History

2022-06-16 20:46:51 +02:00
{ lib, stdenv, fetchurl, fetchpatch }:
stdenv.mkDerivation rec {
pname = "monocypher";
2023-11-12 20:38:08 +01:00
version = "4.0.2";
2022-06-16 20:46:51 +02:00
src = fetchurl {
url = "https://monocypher.org/download/monocypher-${version}.tar.gz";
2023-11-12 20:38:08 +01:00
hash = "sha256-ONBxeXOMDJBnfbo863p7hJa8/qdYuhpT6AP+0wrgh5w=";
2022-06-16 20:46:51 +02:00
};
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 ];
};
}