nixpkgs/pkgs/data/icons/elementary-icon-theme/default.nix

26 lines
716 B
Nix
Raw Normal View History

{ stdenv, fetchurl, cmake, gtk3 }:
2015-10-24 18:57:16 +01:00
stdenv.mkDerivation rec {
name = "elementary-icon-theme-${version}";
2017-10-24 19:27:50 +01:00
version = "4.3.1";
2015-10-24 18:57:16 +01:00
2016-10-14 18:48:50 +01:00
src = fetchurl {
url = "https://launchpad.net/elementaryicons/4.x/${version}/+download/${name}.tar.xz";
2017-10-24 19:27:50 +01:00
sha256 = "1rp22igvnx71l94j5a6px142329djhk2psm1wfgbhdxbj23hw9kb";
2015-10-24 18:57:16 +01:00
};
nativeBuildInputs = [ cmake gtk3 ];
postPatch = "cat > volumeicon/CMakeLists.txt";
postFixup = "gtk-update-icon-cache $out/share/icons/elementary";
2015-10-24 18:57:16 +01:00
meta = with stdenv.lib; {
2016-10-14 18:48:50 +01:00
description = "Elementary icon theme";
homepage = https://launchpad.net/elementaryicons;
2016-10-14 18:48:50 +01:00
license = licenses.gpl3;
platforms = platforms.all;
maintainers = with maintainers; [ simonvandel ];
2015-10-24 18:57:16 +01:00
};
}