mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 13:10:33 +00:00
libgnurl, a fork of libcurl used by GNUnet
This commit is contained in:
parent
111e1536e5
commit
39b5a0c3a2
23
pkgs/development/libraries/libgnurl/default.nix
Normal file
23
pkgs/development/libraries/libgnurl/default.nix
Normal file
|
@ -0,0 +1,23 @@
|
|||
{ stdenv, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "7.35.0";
|
||||
|
||||
name = "libgnurl-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://gnunet.org/sites/default/files/gnurl-${version}.tar.bz2";
|
||||
sha256 = "0dzj22f5z6ppjj1aq1bml64iwbzzcd8w1qy3bgpk6gnzqslsxknf";
|
||||
};
|
||||
|
||||
preConfigure = ''
|
||||
sed -e 's|/usr/bin|/no-such-path|g' -i.bak configure
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "A fork of libcurl used by GNUnet";
|
||||
homepage = https://gnunet.org/gnurl;
|
||||
maintainers = with maintainers; [ falsifian ];
|
||||
hydraPlatforms = platforms.linux;
|
||||
};
|
||||
}
|
|
@ -4945,6 +4945,8 @@ let
|
|||
libgnome_keyring = callPackage ../development/libraries/libgnome-keyring { };
|
||||
libgnome_keyring3 = gnome3.libgnome_keyring;
|
||||
|
||||
libgnurl = callPackage ../development/libraries/libgnurl { };
|
||||
|
||||
libseccomp = callPackage ../development/libraries/libseccomp { };
|
||||
|
||||
libsecret = callPackage ../development/libraries/libsecret { };
|
||||
|
|
Loading…
Reference in a new issue