2018-03-04 11:45:36 +01:00
|
|
|
{ stdenv, fetchFromGitHub, gtk3, numix-icon-theme }:
|
2016-12-08 16:07:53 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-01-26 02:20:06 +01:00
|
|
|
pname = "numix-icon-theme-square";
|
2019-02-25 01:13:41 +01:00
|
|
|
version = "19.02.22";
|
2016-12-08 16:07:53 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "numixproject";
|
2019-01-26 02:20:06 +01:00
|
|
|
repo = pname;
|
2017-09-20 12:10:44 +02:00
|
|
|
rev = version;
|
2019-02-25 01:13:41 +01:00
|
|
|
sha256 = "0qn0s7cd795pm0hbx85gxd1s272zxrzf3r9r6da54h149v3wkgzw";
|
2016-12-08 16:07:53 +01:00
|
|
|
};
|
|
|
|
|
2018-03-04 11:45:36 +01:00
|
|
|
nativeBuildInputs = [ gtk3 numix-icon-theme ];
|
2016-12-08 16:07:53 +01:00
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/share/icons
|
|
|
|
cp -a Numix-Square{,-Light} $out/share/icons/
|
|
|
|
'';
|
|
|
|
|
2018-03-04 11:45:36 +01:00
|
|
|
postFixup = ''
|
|
|
|
for theme in $out/share/icons/*; do
|
|
|
|
gtk-update-icon-cache $theme
|
|
|
|
done
|
|
|
|
'';
|
|
|
|
|
2016-12-08 16:07:53 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Numix icon theme (square version)";
|
2018-09-08 00:32:30 +02:00
|
|
|
homepage = https://numixproject.github.io;
|
2016-12-08 16:07:53 +01:00
|
|
|
license = licenses.gpl3;
|
2018-08-21 02:38:41 +02:00
|
|
|
# darwin cannot deal with file names differing only in case
|
|
|
|
platforms = platforms.linux;
|
2016-12-08 16:07:53 +01:00
|
|
|
maintainers = with maintainers; [ romildo ];
|
|
|
|
};
|
|
|
|
}
|