Merge pull request #267095 from Stekke/monocypher-update

monocypher: 3.1.3 -> 4.0.2
This commit is contained in:
Nikolay Korotkiy 2023-11-13 19:23:19 +04:00 committed by GitHub
commit 4bec70f7c9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,23 +2,13 @@
stdenv.mkDerivation rec {
pname = "monocypher";
version = "3.1.3";
version = "4.0.2";
src = fetchurl {
url = "https://monocypher.org/download/monocypher-${version}.tar.gz";
hash = "sha256-tEK1d98o+MNsqgHZrpARtd2ccX2UvlIBaKBONtf1AW4=";
hash = "sha256-ONBxeXOMDJBnfbo863p7hJa8/qdYuhpT6AP+0wrgh5w=";
};
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;