2013-10-11 20:23:10 +01:00
|
|
|
{ stdenv, fetchurl }:
|
2013-10-11 19:37:47 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2015-11-06 02:19:37 +00:00
|
|
|
name = "libsodium-1.0.6";
|
2013-10-11 19:37:47 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2013-10-11 20:23:10 +01:00
|
|
|
url = "https://download.libsodium.org/libsodium/releases/${name}.tar.gz";
|
2015-11-06 02:19:37 +00:00
|
|
|
sha256 = "0ngvcjwg6m9nivzi208yvz8yvmk6kxnvyr25w907kaicgpm063cl";
|
2013-10-11 19:37:47 +01:00
|
|
|
};
|
|
|
|
|
2015-05-11 22:37:53 +01:00
|
|
|
NIX_LDFLAGS = stdenv.lib.optionalString stdenv.cc.isGNU "-lssp";
|
2013-10-11 19:37:47 +01:00
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
|
2015-05-02 06:54:29 +01:00
|
|
|
meta = with stdenv.lib; {
|
2015-05-09 23:20:02 +01:00
|
|
|
description = "A modern and easy-to-use crypto library";
|
|
|
|
homepage = http://doc.libsodium.org/;
|
2015-05-02 06:54:29 +01:00
|
|
|
license = licenses.isc;
|
2015-05-09 23:20:02 +01:00
|
|
|
maintainers = with maintainers; [ raskin viric wkennington ];
|
2015-05-02 06:54:29 +01:00
|
|
|
platforms = platforms.all;
|
2013-10-11 19:37:47 +01:00
|
|
|
};
|
|
|
|
}
|