6770d7aa4d
svn path=/nixpkgs/trunk/; revision=16826
16 lines
387 B
Nix
16 lines
387 B
Nix
{stdenv, fetchgit, pkgconfig, autoconf, automake, libtool}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "gnome-common-git";
|
|
src = fetchgit {
|
|
url = git://git.gnome.org/gnome-common;
|
|
rev = "53ca82d81d93b52bc057d649247eb18549a86d55";
|
|
md5 = "a3e4c471c73af14d87fa753c2ee05f15";
|
|
};
|
|
buildInputs = [ pkgconfig automake autoconf libtool
|
|
];
|
|
preConfigure = ''
|
|
./autogen.sh
|
|
'';
|
|
}
|