2015-07-15 03:16:06 +01:00
|
|
|
{ stdenv, fetchFromGitHub }:
|
2015-03-04 02:15:30 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2017-11-18 12:18:55 +00:00
|
|
|
version = "2017-11-18";
|
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-11-18 12:18:55 +00:00
|
|
|
rev = "ea7f2069ca1f6190494e96aa2febcadf6248c5b4";
|
|
|
|
sha256 = "1nk0mc2qycwmjqdlrsfgar5m83pyj3hf6f66pywf9706nn2yz8fv";
|
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
|
|
|
};
|
|
|
|
}
|