nixpkgs/pkgs/desktops/gnome-3/core/gnome-icon-theme/default.nix

17 lines
431 B
Nix
Raw Normal View History

2013-02-21 20:38:47 +01:00
{ stdenv, fetchurl, pkgconfig, intltool, iconnamingutils, gtk }:
stdenv.mkDerivation rec {
name = "gnome-icon-theme-3.10.0";
2013-02-21 20:38:47 +01:00
src = fetchurl {
url = "mirror://gnome/sources/gnome-icon-theme/3.10/${name}.tar.xz";
sha256 = "1xinbgkkvlhazj887ajcl13i7kdc1wcca02jwxzvjrvchjsp4m66";
2013-02-21 20:38:47 +01:00
};
nativeBuildInputs = [ pkgconfig intltool iconnamingutils gtk ];
meta = with stdenv.lib; {
platforms = platforms.linux;
};
2013-02-21 20:38:47 +01:00
}