nixpkgs/pkgs/data/icons/numix-icon-theme-circle/default.nix

34 lines
798 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, numix-icon-theme }:
2015-03-04 02:15:30 +00:00
stdenv.mkDerivation rec {
version = "17-12-25";
2015-03-04 02:15:30 +00:00
package-name = "numix-icon-theme-circle";
name = "${package-name}-${version}";
2015-03-04 02:15:30 +00:00
src = fetchFromGitHub {
owner = "numixproject";
repo = package-name;
rev = version;
sha256 = "10sn2w9xzmh7arbw0vn516p9nfym1bs8bf7i8zzvz7y09s61lkxh";
2015-03-04 02:15:30 +00:00
};
buildInputs = [ numix-icon-theme ];
2015-03-04 02:15:30 +00:00
dontBuild = true;
installPhase = ''
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
'';
meta = with stdenv.lib; {
2015-03-04 02:15:30 +00:00
description = "Numix icon theme (circle version)";
homepage = https://numixproject.org;
license = licenses.gpl3;
platforms = platforms.all;
maintainers = with maintainers; [ jgeerds ];
2015-03-04 02:15:30 +00:00
};
}