2015-03-04 02:15:30 +00:00
|
|
|
{ stdenv, fetchurl, unzip }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
version = "d7e8c4cdcf";
|
|
|
|
|
|
|
|
package-name = "numix-icon-theme-circle";
|
|
|
|
|
2015-03-05 07:41:38 +00:00
|
|
|
name = "${package-name}-20150304";
|
2015-03-04 02:15:30 +00:00
|
|
|
|
|
|
|
buildInputs = [ unzip ];
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/numixproject/${package-name}/archive/${version}.zip";
|
|
|
|
sha256 = "672d6f4d000c4c75a64e0297f9609afab1035d082d7ab4f7abe3e2173cba9324";
|
|
|
|
};
|
|
|
|
|
|
|
|
dontBuild = true;
|
|
|
|
|
|
|
|
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
|
|
|
'';
|
|
|
|
|
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;
|
|
|
|
platforms = platforms.all;
|
|
|
|
maintainers = with maintainers; [ jgeerds ];
|
2015-03-04 02:15:30 +00:00
|
|
|
};
|
|
|
|
}
|