summary refs log tree commit diff
path: root/pkgs/development/libraries
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2015-09-01 20:44:09 +0200
committerVladimír Čunát <vcunat@gmail.com>2015-09-01 21:37:40 +0200
commit0327ee3f8ed388a6bd90059970150668c269fec1 (patch)
treed49a88f15006094de1b09a60944c234d9f610bac /pkgs/development/libraries
parentf2d25c5a4d08c5c31a49404d155b5ad809f92732 (diff)
downloadnixpkgs-0327ee3f8ed388a6bd90059970150668c269fec1.tar
nixpkgs-0327ee3f8ed388a6bd90059970150668c269fec1.tar.gz
nixpkgs-0327ee3f8ed388a6bd90059970150668c269fec1.tar.bz2
nixpkgs-0327ee3f8ed388a6bd90059970150668c269fec1.tar.lz
nixpkgs-0327ee3f8ed388a6bd90059970150668c269fec1.tar.xz
nixpkgs-0327ee3f8ed388a6bd90059970150668c269fec1.tar.zst
nixpkgs-0327ee3f8ed388a6bd90059970150668c269fec1.zip
libevent: remove unused vulnerable 1.4.x version
Diffstat (limited to 'pkgs/development/libraries')
-rw-r--r--pkgs/development/libraries/libevent/1.4.nix29
1 files changed, 0 insertions, 29 deletions
diff --git a/pkgs/development/libraries/libevent/1.4.nix b/pkgs/development/libraries/libevent/1.4.nix
deleted file mode 100644
index ed190bf6061..00000000000
--- a/pkgs/development/libraries/libevent/1.4.nix
+++ /dev/null
@@ -1,29 +0,0 @@
-{stdenv, fetchurl}:
-
-let version = "1.4.14b"; in
-stdenv.mkDerivation {
-  name = "libevent-${version}";
-
-  src = fetchurl {
-    url = "https://github.com/downloads/libevent/libevent/libevent-${version}-stable.tar.gz";
-    sha256 = "00b3wih3qpcik6v0qh1406abs2xb954d58ncqwzs8ar2d93ip9mg";
-  };
-
-  meta = {
-    description = "libevent, an event notification library";
-
-    longDescription =
-      '' The libevent API provides a mechanism to execute a callback function
-         when a specific event occurs on a file descriptor or after a timeout
-         has been reached.  Furthermore, libevent also support callbacks due
-         to signals or regular timeouts.
-
-         libevent is meant to replace the event loop found in event driven
-         network servers.  An application just needs to call event_dispatch()
-         and then add or remove events dynamically without having to change
-         the event loop.
-      '';
-
-    license = "mBSD";
-  };
-}