summary refs log tree commit diff
path: root/pkgs/development/libraries/libgnurl
diff options
context:
space:
mode:
authorRahul Gopinath <rahul@gopinath.org>2016-07-04 17:51:28 -0700
committerRahul Gopinath <rahul@gopinath.org>2016-07-04 17:51:33 -0700
commit3919afbc628c6ab5e8805d839146c2edc24331e5 (patch)
treef2edd4fc5299db1caaab810e3552ad13283390e7 /pkgs/development/libraries/libgnurl
parentdaddf89e4f897141bda6daaa764b60b4ba595f1e (diff)
downloadnixpkgs-3919afbc628c6ab5e8805d839146c2edc24331e5.tar
nixpkgs-3919afbc628c6ab5e8805d839146c2edc24331e5.tar.gz
nixpkgs-3919afbc628c6ab5e8805d839146c2edc24331e5.tar.bz2
nixpkgs-3919afbc628c6ab5e8805d839146c2edc24331e5.tar.lz
nixpkgs-3919afbc628c6ab5e8805d839146c2edc24331e5.tar.xz
nixpkgs-3919afbc628c6ab5e8805d839146c2edc24331e5.tar.zst
nixpkgs-3919afbc628c6ab5e8805d839146c2edc24331e5.zip
gnurl: 7.35 -> 7.48
Diffstat (limited to 'pkgs/development/libraries/libgnurl')
-rw-r--r--pkgs/development/libraries/libgnurl/default.nix12
1 files changed, 7 insertions, 5 deletions
diff --git a/pkgs/development/libraries/libgnurl/default.nix b/pkgs/development/libraries/libgnurl/default.nix
index f055b4f5a95..f35447ff38c 100644
--- a/pkgs/development/libraries/libgnurl/default.nix
+++ b/pkgs/development/libraries/libgnurl/default.nix
@@ -1,15 +1,17 @@
-{ stdenv, fetchurl }:
+{ stdenv, fetchurl, perl }:
 
 stdenv.mkDerivation rec {
-  version = "7.35.0";
+  version = "7.48.0";
 
   name = "libgnurl-${version}";
 
   src = fetchurl {
-    url = "https://gnunet.org/sites/default/files/gnurl-${version}.tar.bz2";
-    sha256 = "0dzj22f5z6ppjj1aq1bml64iwbzzcd8w1qy3bgpk6gnzqslsxknf";
+    url = "https://gnunet.org/sites/default/files/gnurl-7_48_0.tar.bz2";
+    sha256 = "14gch4rdibrc8qs4mijsczxvl45dsclf234g17dk6c8nc2s4bm0a";
   };
 
+  buildInputs = [ perl ];
+
   preConfigure = ''
     sed -e 's|/usr/bin|/no-such-path|g' -i.bak configure
   '';
@@ -17,7 +19,7 @@ stdenv.mkDerivation rec {
   meta = with stdenv.lib; {
     description = "A fork of libcurl used by GNUnet";
     homepage    = https://gnunet.org/gnurl;
-    maintainers = with maintainers; [ falsifian ];
+    maintainers = with maintainers; [ falsifian vrthra ];
     hydraPlatforms = platforms.linux;
   };
 }