e60fe8673b
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
13 lines
354 B
Nix
13 lines
354 B
Nix
{ stdenv, fetchurl, pkgconfig, intltool, iconnamingutils }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "gnome-icon-theme-2.28.0";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/gnome-icon-theme/2.28/${name}.tar.bz2";
|
|
sha256 = "111q1yijm8mjvz600nfa49gbjz4988vpfv74jcknfng0k92vvv1i";
|
|
};
|
|
|
|
buildInputs = [ pkgconfig intltool iconnamingutils ];
|
|
}
|