2016-06-12 21:27:16 +02:00
|
|
|
{ stdenv, fetchFromGitHub, numix-icon-theme }:
|
2015-03-04 03:15:30 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2016-10-11 23:33:28 +02:00
|
|
|
version = "2016-09-27";
|
2015-03-04 03:15:30 +01:00
|
|
|
|
|
|
|
package-name = "numix-icon-theme-circle";
|
|
|
|
|
2016-05-20 20:10:37 +02:00
|
|
|
name = "${package-name}-${version}";
|
2015-03-04 03:15:30 +01:00
|
|
|
|
2015-09-11 14:28:02 +02:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "numixproject";
|
|
|
|
repo = package-name;
|
2016-10-11 23:33:28 +02:00
|
|
|
rev = "481bc1100f01e25e92deb7facf61436b27f9ca8a";
|
|
|
|
sha256 = "0fkr7w6z6sz5yblgshr3qr2bszia6dsjszv3gmcbi2xqvjjd8wij";
|
2015-03-04 03:15:30 +01:00
|
|
|
};
|
|
|
|
|
2016-06-12 21:27:16 +02:00
|
|
|
buildInputs = [ numix-icon-theme ];
|
|
|
|
|
2015-03-04 03:15:30 +01:00
|
|
|
dontBuild = true;
|
|
|
|
|
|
|
|
installPhase = ''
|
2015-03-05 08:41:38 +01:00
|
|
|
install -dm 755 $out/share/icons
|
|
|
|
cp -dr --no-preserve='ownership' Numix-Circle{,-Light} $out/share/icons/
|
2015-03-04 03:15:30 +01:00
|
|
|
'';
|
|
|
|
|
2015-09-11 14:25:29 +02:00
|
|
|
meta = with stdenv.lib; {
|
2015-03-04 03:15:30 +01:00
|
|
|
description = "Numix icon theme (circle version)";
|
|
|
|
homepage = https://numixproject.org;
|
2015-09-11 14:25:29 +02:00
|
|
|
license = licenses.gpl3;
|
|
|
|
platforms = platforms.all;
|
|
|
|
maintainers = with maintainers; [ jgeerds ];
|
2015-03-04 03:15:30 +01:00
|
|
|
};
|
|
|
|
}
|