aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/libraries/exosip
diff options
context:
space:
mode:
authorRobin Gloster <mail@glob.in>2017-04-29 12:39:06 +0200
committerRobin Gloster <mail@glob.in>2017-08-04 04:16:57 +0200
commit750b78301c7a1b5f6c843f4be0fc377c345241f1 (patch)
tree031747ea6849737331c74fd0667409986b3f013e /pkgs/development/libraries/exosip
parent7786767beafcf8d249b36976501d62f00c0cd354 (diff)
libexosip_3: remove unused, old version
Diffstat (limited to 'pkgs/development/libraries/exosip')
-rw-r--r--pkgs/development/libraries/exosip/3.x.nix18
1 files changed, 0 insertions, 18 deletions
diff --git a/pkgs/development/libraries/exosip/3.x.nix b/pkgs/development/libraries/exosip/3.x.nix
deleted file mode 100644
index aa55a7f0d1dc..000000000000
--- a/pkgs/development/libraries/exosip/3.x.nix
+++ /dev/null
@@ -1,18 +0,0 @@
-{stdenv, fetchurl, libosip, openssl, pkgconfig }:
-
-stdenv.mkDerivation rec {
- version = "3.6.0";
- src = fetchurl {
- url = "mirror://savannah/exosip/libeXosip2-${version}.tar.gz";
- sha256 = "0r1mj8x5991bgwf03bx1ajn5kbbmw1136jabw2pn7dls9h41mnli";
- };
- name = "libexosip2-${version}";
-
- buildInputs = [ libosip openssl pkgconfig ];
-
- meta = {
- license = stdenv.lib.licenses.gpl2Plus;
- description = "Library that hides the complexity of using the SIP protocol";
- platforms = stdenv.lib.platforms.linux;
- };
-}