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

22 lines
588 B
Nix
Raw Normal View History

{ stdenv, fetchurl }:
2013-10-11 11:37:47 -07:00
stdenv.mkDerivation rec {
2015-02-03 07:54:08 -08:00
name = "libsodium-1.0.2";
2013-10-11 11:37:47 -07:00
src = fetchurl {
url = "https://download.libsodium.org/libsodium/releases/${name}.tar.gz";
2015-02-03 07:54:08 -08:00
sha256 = "06dabf77cz6qg7aqv5j5r4m32b5zn253pixwb3k5lm3z0h88y7cn";
2013-10-11 11:37:47 -07:00
};
NIX_LDFLAGS = stdenv.lib.optionalString (stdenv.cc.cc.isGNU or false) "-lssp";
2013-10-11 11:37:47 -07:00
doCheck = true;
2015-05-01 22:54:29 -07:00
meta = with stdenv.lib; {
2015-02-03 07:28:20 -08:00
description = "Version of NaCl with hardware tests at runtime, not build time";
2015-05-01 22:54:29 -07:00
license = licenses.isc;
maintainers = with maintainers; [ viric wkennington ];
platforms = platforms.all;
2013-10-11 11:37:47 -07:00
};
}