summary refs log tree commit diff
path: root/pkgs/development/libraries/libressl
diff options
context:
space:
mode:
authorzimbatm <zimbatm@zimbatm.com>2015-11-23 23:04:38 +0000
committerVladimír Čunát <vcunat@gmail.com>2015-11-24 18:10:53 +0100
commit144eed8bad6dda707fac78d06f6a0d9e1eb4e933 (patch)
tree848582b9da452aab80d950542216cc621b24ddaa /pkgs/development/libraries/libressl
parent38371937d2e1c587f766551e017eb675b4b67af6 (diff)
downloadnixpkgs-144eed8bad6dda707fac78d06f6a0d9e1eb4e933.tar
nixpkgs-144eed8bad6dda707fac78d06f6a0d9e1eb4e933.tar.gz
nixpkgs-144eed8bad6dda707fac78d06f6a0d9e1eb4e933.tar.bz2
nixpkgs-144eed8bad6dda707fac78d06f6a0d9e1eb4e933.tar.lz
nixpkgs-144eed8bad6dda707fac78d06f6a0d9e1eb4e933.tar.xz
nixpkgs-144eed8bad6dda707fac78d06f6a0d9e1eb4e933.tar.zst
nixpkgs-144eed8bad6dda707fac78d06f6a0d9e1eb4e933.zip
libressl: split branches and add 2.3.1 (close #11196)
2.3.x introduces some backward-incompatible changes but is still nice to have.

Both 2.3.1 and 2.2.4 are available and 2.2.4 is still the default for now.
Diffstat (limited to 'pkgs/development/libraries/libressl')
-rw-r--r--pkgs/development/libraries/libressl/2.2.nix (renamed from pkgs/development/libraries/libressl/default.nix)0
-rw-r--r--pkgs/development/libraries/libressl/2.3.nix20
2 files changed, 20 insertions, 0 deletions
diff --git a/pkgs/development/libraries/libressl/default.nix b/pkgs/development/libraries/libressl/2.2.nix
index fd18c7f5652..fd18c7f5652 100644
--- a/pkgs/development/libraries/libressl/default.nix
+++ b/pkgs/development/libraries/libressl/2.2.nix
diff --git a/pkgs/development/libraries/libressl/2.3.nix b/pkgs/development/libraries/libressl/2.3.nix
new file mode 100644
index 00000000000..d9981f9b0c5
--- /dev/null
+++ b/pkgs/development/libraries/libressl/2.3.nix
@@ -0,0 +1,20 @@
+{ stdenv, fetchurl }:
+
+stdenv.mkDerivation rec {
+  name = "libressl-${version}";
+  version = "2.3.1";
+
+  src = fetchurl {
+    url    = "mirror://openbsd/LibreSSL/${name}.tar.gz";
+    sha256 = "410b58db4ebbcab43c3357612e591094f64fb9339269caa2e68728e36f8d589e";
+  };
+
+  enableParallelBuilding = true;
+
+  meta = with stdenv.lib; {
+    description = "Free TLS/SSL implementation";
+    homepage    = "http://www.libressl.org";
+    platforms   = platforms.all;
+    maintainers = with maintainers; [ thoughtpolice wkennington fpletz ];
+  };
+}