Merge pull request #177919 from sikmir/monocypher

monocypher: init at 3.1.3
main
Sandro 2 years ago committed by GitHub
commit dda843a6b7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 33
      pkgs/development/libraries/monocypher/default.nix
  2. 2
      pkgs/top-level/all-packages.nix

@ -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 ];
};
}

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

Loading…
Cancel
Save