1acacaaf32
libsodium: 1.0.16 -> 1.0.17
(cherry picked from commit 5655be51cc
)
26 lines
617 B
Nix
26 lines
617 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libsodium-1.0.17";
|
|
|
|
src = fetchurl {
|
|
url = "https://download.libsodium.org/libsodium/releases/${name}.tar.gz";
|
|
sha256 = "1cf2d9v1gylz1qcy2zappbf526qfmph6gd6fnn3w2b347vixmhqc";
|
|
};
|
|
|
|
outputs = [ "out" "dev" ];
|
|
separateDebugInfo = stdenv.isLinux;
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
doCheck = true;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A modern and easy-to-use crypto library";
|
|
homepage = http://doc.libsodium.org/;
|
|
license = licenses.isc;
|
|
maintainers = with maintainers; [ raskin ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|