nixpkgs/pkgs/desktops/gnome-2/platform/gnome-common/default.nix
Yury G. Kudryashov e60fe8673b gnome: use callPackage, move to gnome-2
gnome28 was a mix of packages from various releases, so do not mention 2.28 in
the attribute name.

svn path=/nixpkgs/trunk/; revision=29721
2011-10-08 16:58:32 +00:00

15 lines
395 B
Nix

{stdenv, fetchgit, pkgconfig, autoconf, automake, libtool}:
stdenv.mkDerivation {
name = "gnome-common-2.28.0";
src = fetchgit {
url = mirror://gnome/sources/gnome-common/2.28/gnome-common-2.28.0.tar.bz2;
sha256 = "18dnx5hndl19lpk6i3ybfsssfasma5wi7p9mqw05sx137l81fj6x";
};
buildInputs = [ pkgconfig automake autoconf libtool
];
preConfigure = ''
./autogen.sh
'';
}