forked from mirrors/nixpkgs
add libmicrohttpd
svn path=/nixpkgs/trunk/; revision=11813
This commit is contained in:
parent
e38b426fda
commit
7ab6fe7900
12
pkgs/development/libraries/libmicrohttpd/default.nix
Normal file
12
pkgs/development/libraries/libmicrohttpd/default.nix
Normal 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];
|
||||
}
|
|
@ -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;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue