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

22 lines
518 B
Nix
Raw Normal View History

{ stdenv, fetchurl }:
2013-10-11 19:37:47 +01:00
stdenv.mkDerivation rec {
2013-12-13 20:52:34 +00:00
name = "libsodium-0.4.5";
2013-10-11 19:37:47 +01:00
src = fetchurl {
url = "https://download.libsodium.org/libsodium/releases/${name}.tar.gz";
2013-12-13 20:52:34 +00:00
sha256 = "0cmcw479p866r6cjh20wzjr84pdn0mfswr5h57mw1siyylnj1mbs";
2013-10-11 19:37:47 +01:00
};
NIX_LDFLAGS = "-lssp";
2013-10-11 19:37:47 +01:00
doCheck = true;
meta = {
description = "Version of NaCl with harwdare tests at runtime, not build time";
license = "ISC";
maintainers = with stdenv.lib.maintainers; [ viric ];
platforms = stdenv.lib.platforms.all;
};
}