1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-01-22 14:45:27 +00:00

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];
}