monocypher: init at 3.1.3

This commit is contained in:
Nikolay Korotkiy 2022-06-16 21:46:51 +03:00
parent ea8ca72ec5
commit 1ec563dd0a
No known key found for this signature in database
GPG key ID: D1DE6D7F693663A5
2 changed files with 35 additions and 0 deletions

View file

@ -0,0 +1,33 @@
{ lib, stdenv, fetchurl, fetchpatch }:
stdenv.mkDerivation rec {
pname = "monocypher";
version = "3.1.3";
src = fetchurl {
url = "https://monocypher.org/download/monocypher-${version}.tar.gz";
hash = "sha256-tEK1d98o+MNsqgHZrpARtd2ccX2UvlIBaKBONtf1AW4=";
};
patches = [
# Fix cross-compilation
(fetchpatch {
url = "https://github.com/LoupVaillant/Monocypher/commit/376715e1c0ebb375e50dfa757bc89486c9a7b404.patch";
hash = "sha256-tuwSUaU4w+jkaj10ChMgUmOQmoKYnv5JgJ1og8EXxFk=";
})
];
makeFlags = [ "AR:=$(AR)" "CC:=$(CC)" ];
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 ];
};
}

View file

@ -28315,6 +28315,8 @@ with pkgs;
mopidy-youtube
mopidy-ytmusic;
monocypher = callPackage ../development/libraries/monocypher { };
motif = callPackage ../development/libraries/motif { };
mousai = callPackage ../applications/audio/mousai { };