2017-12-26 17:58:12 +00:00
|
|
|
{ stdenv, fetchFromGitHub, hicolor_icon_theme }:
|
2015-03-04 02:15:30 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2017-12-26 17:58:12 +00:00
|
|
|
version = "17-12-25";
|
2015-03-04 02:15:30 +00:00
|
|
|
|
|
|
|
package-name = "numix-icon-theme";
|
2015-07-15 03:16:06 +01:00
|
|
|
|
2016-05-20 18:58:44 +01:00
|
|
|
name = "${package-name}-${version}";
|
2015-03-04 02:15:30 +00:00
|
|
|
|
2015-07-15 03:16:06 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "numixproject";
|
|
|
|
repo = package-name;
|
2017-12-26 17:58:12 +00:00
|
|
|
rev = version;
|
|
|
|
sha256 = "0q3hpq2jc9iwnzzqpb12g1qzjsw4ckhdqkfqf6nirl87r5drkv6j";
|
2015-03-04 02:15:30 +00:00
|
|
|
};
|
|
|
|
|
2017-12-26 17:58:12 +00:00
|
|
|
buildInputs = [ hicolor_icon_theme ];
|
|
|
|
|
2015-03-04 02:15:30 +00:00
|
|
|
dontBuild = true;
|
|
|
|
|
|
|
|
installPhase = ''
|
2015-03-05 07:41:38 +00:00
|
|
|
install -dm 755 $out/share/icons
|
|
|
|
cp -dr --no-preserve='ownership' Numix{,-Light} $out/share/icons/
|
2015-03-04 02:15:30 +00:00
|
|
|
'';
|
2015-07-15 03:16:06 +01:00
|
|
|
|
2015-09-11 13:23:22 +01:00
|
|
|
meta = with stdenv.lib; {
|
2015-03-04 02:15:30 +00:00
|
|
|
description = "Numix icon theme";
|
|
|
|
homepage = https://numixproject.org;
|
2015-09-11 13:23:22 +01:00
|
|
|
license = licenses.gpl3;
|
|
|
|
platforms = platforms.all;
|
|
|
|
maintainers = with maintainers; [ romildo jgeerds ];
|
2015-03-04 02:15:30 +00:00
|
|
|
};
|
|
|
|
}
|