2018-03-04 10:26:25 +00:00
|
|
|
{ stdenv, fetchFromGitHub, gtk3, numix-icon-theme }:
|
2015-03-04 02:15:30 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-08-20 15:58:37 +01:00
|
|
|
version = "18.08.17";
|
2015-03-04 02:15:30 +00:00
|
|
|
|
|
|
|
package-name = "numix-icon-theme-circle";
|
2016-11-11 10:25:16 +00:00
|
|
|
|
2016-05-20 19:10:37 +01:00
|
|
|
name = "${package-name}-${version}";
|
2015-03-04 02:15:30 +00:00
|
|
|
|
2015-09-11 13:28:02 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "numixproject";
|
|
|
|
repo = package-name;
|
2017-09-20 11:01:18 +01:00
|
|
|
rev = version;
|
2018-08-20 15:58:37 +01:00
|
|
|
sha256 = "1nxgm5vf2rzbg8qh48iy0vdj12ffahlp9qhj8h0k1li03s3nf15h";
|
2015-03-04 02:15:30 +00:00
|
|
|
};
|
|
|
|
|
2018-03-04 10:26:25 +00:00
|
|
|
nativeBuildInputs = [ gtk3 numix-icon-theme ];
|
2015-03-04 02:15:30 +00:00
|
|
|
|
|
|
|
installPhase = ''
|
2015-03-05 07:41:38 +00:00
|
|
|
install -dm 755 $out/share/icons
|
|
|
|
cp -dr --no-preserve='ownership' Numix-Circle{,-Light} $out/share/icons/
|
2015-03-04 02:15:30 +00:00
|
|
|
'';
|
2016-11-11 10:25:16 +00:00
|
|
|
|
2018-03-04 10:26:25 +00:00
|
|
|
postFixup = ''
|
|
|
|
for theme in $out/share/icons/*; do
|
|
|
|
gtk-update-icon-cache $theme
|
|
|
|
done
|
|
|
|
'';
|
|
|
|
|
2015-09-11 13:25:29 +01:00
|
|
|
meta = with stdenv.lib; {
|
2015-03-04 02:15:30 +00:00
|
|
|
description = "Numix icon theme (circle version)";
|
|
|
|
homepage = https://numixproject.org;
|
2015-09-11 13:25:29 +01:00
|
|
|
license = licenses.gpl3;
|
2018-08-21 01:29:02 +01:00
|
|
|
# darwin cannot deal with file names differing only in case
|
|
|
|
platforms = platforms.linux;
|
2015-09-11 13:25:29 +01:00
|
|
|
maintainers = with maintainers; [ jgeerds ];
|
2015-03-04 02:15:30 +00:00
|
|
|
};
|
|
|
|
}
|