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 {
|
|
|
|
name = "${package-name}-${version}";
|
2017-09-20 12:10:44 +02:00
|
|
|
package-name = "numix-icon-theme-square";
|
2018-03-04 11:29:53 +01:00
|
|
|
version = "18-02-16";
|
2016-12-08 16:07:53 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "numixproject";
|
|
|
|
repo = package-name;
|
2017-09-20 12:10:44 +02:00
|
|
|
rev = version;
|
2018-03-04 11:29:53 +01:00
|
|
|
sha256 = "1gjwc0s6a7q1jby5bcwxkcmbs470m81y8s0clsm0qhcmcn1c36xj";
|
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)";
|
|
|
|
homepage = https://numixproject.org;
|
|
|
|
license = licenses.gpl3;
|
2018-03-13 23:00:52 +01:00
|
|
|
platforms = platforms.linux; # Maybe other non-darwin Unix
|
2016-12-08 16:07:53 +01:00
|
|
|
maintainers = with maintainers; [ romildo ];
|
|
|
|
};
|
|
|
|
}
|