mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
c077834783
svn path=/nixpkgs/trunk/; revision=4139
11 lines
334 B
Nix
11 lines
334 B
Nix
{stdenv, fetchurl, perl, perlXMLParser, pkgconfig, libxml2, glib}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "libgsf-1.13.2";
|
|
src = fetchurl {
|
|
url = http://ftp.gnome.org/pub/GNOME/sources/libgsf/1.13/libgsf-1.13.2.tar.bz2 ;
|
|
md5 = "0894afd88f9e43eada27e52cb22cd0f1";
|
|
};
|
|
buildInputs = [perl perlXMLParser pkgconfig libxml2 glib];
|
|
}
|