summary refs log tree commit diff
path: root/pkgs/development/libraries/libressl
diff options
context:
space:
mode:
authorAustin Seipp <aseipp@pobox.com>2014-08-20 00:51:15 -0500
committerAustin Seipp <aseipp@pobox.com>2014-08-20 00:51:15 -0500
commit0aa8cdcef94fa065238922a016022d8ff2facc5a (patch)
treecac7ffc316970b1a11a0b6c64326c51e54711be3 /pkgs/development/libraries/libressl
parent47c443bede78fe4571e802d414241b34e873cccb (diff)
downloadnixlib-0aa8cdcef94fa065238922a016022d8ff2facc5a.tar
nixlib-0aa8cdcef94fa065238922a016022d8ff2facc5a.tar.gz
nixlib-0aa8cdcef94fa065238922a016022d8ff2facc5a.tar.bz2
nixlib-0aa8cdcef94fa065238922a016022d8ff2facc5a.tar.lz
nixlib-0aa8cdcef94fa065238922a016022d8ff2facc5a.tar.xz
nixlib-0aa8cdcef94fa065238922a016022d8ff2facc5a.tar.zst
nixlib-0aa8cdcef94fa065238922a016022d8ff2facc5a.zip
nixpkgs: libressl 2.0.5
Signed-off-by: Austin Seipp <aseipp@pobox.com>
Diffstat (limited to 'pkgs/development/libraries/libressl')
-rw-r--r--pkgs/development/libraries/libressl/default.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/pkgs/development/libraries/libressl/default.nix b/pkgs/development/libraries/libressl/default.nix
new file mode 100644
index 000000000000..f77e9a313775
--- /dev/null
+++ b/pkgs/development/libraries/libressl/default.nix
@@ -0,0 +1,20 @@
+{ stdenv, fetchurl }:
+
+stdenv.mkDerivation rec {
+  name = "libressl-${version}";
+  version = "2.0.5";
+
+  src = fetchurl {
+    url    = "http://ftp.openbsd.org/pub/OpenBSD/LibreSSL/${name}.tar.gz";
+    sha256 = "16pwgmj90k10pf03il39lnck5kqw59hj0fp2qhmgsgmrvssn6m1z";
+  };
+
+  enableParallelBuilding = true;
+
+  meta = {
+    description = "Free TLS/SSL implementation";
+    homepage    = "http://www.libressl.org";
+    platforms   = stdenv.lib.platforms.all;
+    maintainers = [ stdenv.lib.maintainers.thoughtpolice ];
+  };
+}