summary refs log tree commit diff
path: root/pkgs/development/libraries/exosip
diff options
context:
space:
mode:
authorndowens <ndowens04@gmail.com>2017-03-12 14:44:58 -0500
committerndowens <ndowens04@gmail.com>2017-03-12 14:44:58 -0500
commite86bb4da9d9236825f7d322eccda6afaa1e61bfe (patch)
treeeb9ed2a6aaa2e7bc06d2da1d671e8c240bdbfa73 /pkgs/development/libraries/exosip
parent45cfd3969ae954da8b7f804df6e9ec2833c5eb7f (diff)
downloadnixpkgs-e86bb4da9d9236825f7d322eccda6afaa1e61bfe.tar
nixpkgs-e86bb4da9d9236825f7d322eccda6afaa1e61bfe.tar.gz
nixpkgs-e86bb4da9d9236825f7d322eccda6afaa1e61bfe.tar.bz2
nixpkgs-e86bb4da9d9236825f7d322eccda6afaa1e61bfe.tar.lz
nixpkgs-e86bb4da9d9236825f7d322eccda6afaa1e61bfe.tar.xz
nixpkgs-e86bb4da9d9236825f7d322eccda6afaa1e61bfe.tar.zst
nixpkgs-e86bb4da9d9236825f7d322eccda6afaa1e61bfe.zip
exosip: 4.0.0 -> 4.1.0
Diffstat (limited to 'pkgs/development/libraries/exosip')
-rw-r--r--pkgs/development/libraries/exosip/default.nix18
1 files changed, 10 insertions, 8 deletions
diff --git a/pkgs/development/libraries/exosip/default.nix b/pkgs/development/libraries/exosip/default.nix
index 9cf49b3c2c0..a5dba0c94f1 100644
--- a/pkgs/development/libraries/exosip/default.nix
+++ b/pkgs/development/libraries/exosip/default.nix
@@ -1,18 +1,20 @@
 {stdenv, fetchurl, libosip, openssl, pkgconfig }:
 
 stdenv.mkDerivation rec {
-  version = "4.0.0";
-  src = fetchurl {
+ name = "libexosip2-${version}";
+ version = "4.1.0";
+ 
+ src = fetchurl {
     url = "mirror://savannah/exosip/libeXosip2-${version}.tar.gz";
-    sha256 = "1rdjr3x7s992w004cqf4xji1522an9rpzsr9wvyhp685khmahrsj";
+    sha256 = "17cna8kpc8nk1si419vgr6r42k2lda0rdk50vlxrw8rzg0xp2xrw";
   };
-  name = "libexosip2-${version}";
-
+ 
+  nativeBuildInputs = [ pkgconfig ];
   buildInputs = [ libosip openssl pkgconfig ];
       
-  meta = {
-    license = stdenv.lib.licenses.gpl2Plus;
+  meta = with stdenv.lib; {
+    license = licenses.gpl2Plus;
     description = "Library that hides the complexity of using the SIP protocol";
-    platforms = stdenv.lib.platforms.linux;
+    platforms =platforms.linux;
   };
 }