3
0
Fork 0
forked from mirrors/nixpkgs

add libmicrohttpd

svn path=/nixpkgs/trunk/; revision=11813
This commit is contained in:
Armijn Hemel 2008-05-11 11:46:48 +00:00
parent e38b426fda
commit 7ab6fe7900
2 changed files with 16 additions and 0 deletions

View file

@ -0,0 +1,12 @@
{stdenv, fetchurl, curl}:
stdenv.mkDerivation {
name = "libmicrohttpd-0.3.0";
src = fetchurl {
url = ftp://ftp.nluug.nl/pub/gnu/libmicrohttpd/libmicrohttpd-0.3.0.tar.gz;
sha256 = "1m3c9akpdx2lg7klqxv5vbwjr9vwfx5k0aqn8zmf6rpdgk5c3bii";
};
buildInputs = [curl];
}

View file

@ -2850,6 +2850,10 @@ let pkgs = rec {
inherit fetchurl stdenv pkgconfig libmowgli;
};
libmicrohttpd = import ../development/libraries/libmicrohttpd {
inherit fetchurl stdenv curl;
};
libmowgli = import ../development/libraries/libmowgli {
inherit fetchurl stdenv;
};