mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 05:00:16 +00:00
GNU libmicrohttpd 0.4.4.
svn path=/nixpkgs/trunk/; revision=19218
This commit is contained in:
parent
59bb7dd1ef
commit
eaf1e51ab7
|
@ -1,15 +1,23 @@
|
|||
{stdenv, fetchurl, curl}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "libmicrohttpd-0.3.1";
|
||||
name = "libmicrohttpd-0.4.4";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://gnu/libmicrohttpd/${name}.tar.gz";
|
||||
sha256 = "1zv8a7lwypwbwzam5jvr35wvxb13chyh0ir18k82nzm9q5s3v3n3";
|
||||
sha256 = "1w486b4hpwnzpc4zdywm3f1q5zs7j4yh7xibbsig6b8cv1npn0rz";
|
||||
};
|
||||
|
||||
buildInputs = [ curl ];
|
||||
|
||||
preCheck =
|
||||
# Since `localhost' can't be resolved in a chroot, work around it.
|
||||
'' for i in "src/test"*"/"*.[ch]
|
||||
do
|
||||
sed -i "$i" -es/localhost/127.0.0.1/g
|
||||
done
|
||||
'';
|
||||
|
||||
doCheck = true;
|
||||
|
||||
meta = {
|
||||
|
@ -23,5 +31,7 @@ stdenv.mkDerivation rec {
|
|||
license = "LGPLv2+";
|
||||
|
||||
homepage = http://www.gnu.org/software/libmicrohttpd/;
|
||||
|
||||
maintainers = [ stdenv.lib.maintainers.ludo ];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue