nixpkgs/pkgs/development/libraries/libsodium/default.nix

22 lines
536 B
Nix
Raw Normal View History

{ stdenv, fetchurl }:
2013-10-11 18:37:47 +00:00
stdenv.mkDerivation rec {
2014-09-18 07:23:01 +00:00
name = "libsodium-0.7.0";
2013-10-11 18:37:47 +00:00
src = fetchurl {
url = "https://download.libsodium.org/libsodium/releases/${name}.tar.gz";
2014-09-18 07:23:01 +00:00
sha256 = "0s4iis5h7yh27kamwic3rddyp5ra941bcqcawa37grjvl78zzjjc";
2013-10-11 18:37:47 +00:00
};
NIX_LDFLAGS = "-lssp";
2013-10-11 18:37:47 +00:00
doCheck = true;
meta = {
2015-02-03 15:28:20 +00:00
description = "Version of NaCl with hardware tests at runtime, not build time";
license = stdenv.lib.licenses.isc;
2013-10-11 18:37:47 +00:00
maintainers = with stdenv.lib.maintainers; [ viric ];
platforms = stdenv.lib.platforms.all;
};
}