mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
Update gnome-common
svn path=/nixpkgs/trunk/; revision=29723
This commit is contained in:
parent
2fdeacfebb
commit
bbd24e9c87
1 changed files with 8 additions and 11 deletions
|
@ -1,14 +1,11 @@
|
||||||
{stdenv, fetchgit, pkgconfig, autoconf, automake, libtool}:
|
{ stdenv, fetchurl_gnome }:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation rec {
|
||||||
name = "gnome-common-2.28.0";
|
name = src.pkgname;
|
||||||
src = fetchgit {
|
|
||||||
url = mirror://gnome/sources/gnome-common/2.28/gnome-common-2.28.0.tar.bz2;
|
src = fetchurl_gnome {
|
||||||
sha256 = "18dnx5hndl19lpk6i3ybfsssfasma5wi7p9mqw05sx137l81fj6x";
|
project = "gnome-common";
|
||||||
|
major = "2"; minor = "34"; patchlevel = "0";
|
||||||
|
sha256 = "1pz13mpp09q5s3bikm8ml92s1g0scihsm4iipqv1ql3mp6d4z73s";
|
||||||
};
|
};
|
||||||
buildInputs = [ pkgconfig automake autoconf libtool
|
|
||||||
];
|
|
||||||
preConfigure = ''
|
|
||||||
./autogen.sh
|
|
||||||
'';
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue