3
0
Fork 0
forked from mirrors/nixpkgs

add libsoup (GNOME)

svn path=/nixpkgs/trunk/; revision=5611
This commit is contained in:
Armijn Hemel 2006-07-06 16:24:38 +00:00
parent f7faaf75f7
commit 54067dd4c4

View file

@ -0,0 +1,6 @@
{input, stdenv, fetchurl, pkgconfig, libxml2, glib}:
stdenv.mkDerivation {
inherit (input) name src;
buildInputs = [pkgconfig libxml2 glib];
}