nixpkgs/pkgs/desktops/kde-4.4/oxygen-icons/default.nix
Lluís Batlle i Rossell 94fd6da74e Updating kde from 4.4.4 to 4.4.5 (a bit blind; I know it builds, but the kde4 test fails for me for a
not-kde reason - let's see how hydra tests it)

svn path=/nixpkgs/trunk/; revision=22441
2010-07-02 20:46:42 +00:00

17 lines
515 B
Nix

{stdenv, fetchurl, lib, cmake}:
stdenv.mkDerivation {
name = "oxygen-icons-4.4.5";
src = fetchurl {
url = mirror://kde/stable/4.4.5/src/oxygen-icons-4.4.5.tar.bz2;
sha256 = "15nfh8zl54a7b3pyqjiabv82srkp7c8gl9fpsy9ydw742lvs0pr7";
};
buildInputs = [ cmake ];
meta = {
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 = [ lib.maintainers.sander ];
};
}