summary refs log tree commit diff
path: root/pkgs/development/libraries/libressl
diff options
context:
space:
mode:
authorRobin Gloster <mail@glob.in>2017-01-27 20:39:32 +0100
committerRobin Gloster <mail@glob.in>2017-01-27 20:39:32 +0100
commitc466e31a0f5443975921e397283057d8acd6f8cb (patch)
treeb67bec19859c16a17d334342e43672a9fbb08968 /pkgs/development/libraries/libressl
parentc67805ff17d4cedaa5fe9b159fd32a01bc81d5bc (diff)
downloadnixlib-c466e31a0f5443975921e397283057d8acd6f8cb.tar
nixlib-c466e31a0f5443975921e397283057d8acd6f8cb.tar.gz
nixlib-c466e31a0f5443975921e397283057d8acd6f8cb.tar.bz2
nixlib-c466e31a0f5443975921e397283057d8acd6f8cb.tar.lz
nixlib-c466e31a0f5443975921e397283057d8acd6f8cb.tar.xz
nixlib-c466e31a0f5443975921e397283057d8acd6f8cb.tar.zst
nixlib-c466e31a0f5443975921e397283057d8acd6f8cb.zip
libressl_2_3: remove
Diffstat (limited to 'pkgs/development/libraries/libressl')
-rw-r--r--pkgs/development/libraries/libressl/2.3.nix22
1 files changed, 0 insertions, 22 deletions
diff --git a/pkgs/development/libraries/libressl/2.3.nix b/pkgs/development/libraries/libressl/2.3.nix
deleted file mode 100644
index aa5841156897..000000000000
--- a/pkgs/development/libraries/libressl/2.3.nix
+++ /dev/null
@@ -1,22 +0,0 @@
-{ stdenv, fetchurl }:
-
-stdenv.mkDerivation rec {
-  name = "libressl-${version}";
-  version = "2.3.9";
-
-  src = fetchurl {
-    url    = "mirror://openbsd/LibreSSL/${name}.tar.gz";
-    sha256 = "1z4nh45zdh1gllhgbvlgd2vk4srhbaswyn82l3dzcfmi9rk17zx6";
-  };
-
-  enableParallelBuilding = true;
-
-  outputs = [ "bin" "dev" "out" "man" ];
-
-  meta = with stdenv.lib; {
-    description = "Free TLS/SSL implementation";
-    homepage    = "http://www.libressl.org";
-    platforms   = platforms.all;
-    maintainers = with maintainers; [ thoughtpolice wkennington fpletz globin ];
-  };
-}