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

22 lines
536 B
Nix
Raw Normal View History

{ stdenv, fetchurl }:
2013-10-11 19:37:47 +01:00
stdenv.mkDerivation rec {
2015-02-03 15:54:08 +00:00
name = "libsodium-1.0.2";
2013-10-11 19:37:47 +01:00
src = fetchurl {
url = "https://download.libsodium.org/libsodium/releases/${name}.tar.gz";
2015-02-03 15:54:08 +00:00
sha256 = "06dabf77cz6qg7aqv5j5r4m32b5zn253pixwb3k5lm3z0h88y7cn";
2013-10-11 19:37:47 +01:00
};
NIX_LDFLAGS = "-lssp";
2013-10-11 19:37:47 +01: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 19:37:47 +01:00
maintainers = with stdenv.lib.maintainers; [ viric ];
platforms = stdenv.lib.platforms.all;
};
}