nixpkgs/pkgs/desktops/kde-4.5/support/oxygen-icons/default.nix
Yury G. Kudryashov 5245e8f885 small fixes, kdepimlibs, oxygen-icons
svn path=/nixpkgs/trunk/; revision=22891
2010-08-02 17:14:59 +00:00

17 lines
522 B
Nix

{stdenv, fetchurl, cmake}:
stdenv.mkDerivation rec {
name = "oxygen-icons-4.4.92";
src = fetchurl {
url = "mirror://kde/unstable/4.4.92/src/${name}.tar.bz2";
sha256 = "1aqc5p93c9jz660x94pxx7anamrpmwd490jy0lw38y99lbdhgz9k";
};
buildInputs = [ cmake ];
meta = with stdenv.lib; {
description = "KDE Oxygen theme icons";
longDescription = "Contains icons for the KDE Oxygen theme, which is the default icon theme since KDE 4.3";
license = "GPL";
maintainers = [ maintainers.sander ];
};
}