1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-22 13:41:26 +00:00
nixpkgs/pkgs/development/libraries/mbedtls/default.nix

35 lines
680 B
Nix
Raw Normal View History

2015-04-06 22:41:54 +01:00
{ stdenv, fetchurl, perl }:
stdenv.mkDerivation rec {
2015-06-19 05:50:29 +01:00
name = "mbedtls-1.3.11";
2015-04-06 22:41:54 +01:00
src = fetchurl {
url = "https://polarssl.org/download/${name}-gpl.tgz";
2015-06-19 05:50:29 +01:00
sha256 = "1js1lk6hvw9l3nhjhnhzfazfbnlcmk229hmnlm7jli3agc1979b7";
2015-04-06 22:41:54 +01:00
};
nativeBuildInputs = [ perl ];
postPatch = ''
patchShebangs .
'';
makeFlags = [
"SHARED=1"
];
installFlags = [
"DESTDIR=\${out}"
];
doCheck = true;
meta = with stdenv.lib; {
homepage = https://polarssl.org/;
description = "Portable cryptographic and SSL/TLS library, aka polarssl";
license = licenses.gpl3;
platforms = platforms.all;
maintainers = with maintainers; [ wkennington ];
};
}