mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
Added Numix/Numix-Circle icon theme
This commit is contained in:
parent
919894f4fe
commit
3876279b10
30
pkgs/data/icons/numix-icon-theme-circle/default.nix
Normal file
30
pkgs/data/icons/numix-icon-theme-circle/default.nix
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
{ stdenv, fetchurl, unzip }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
version = "d7e8c4cdcf";
|
||||||
|
|
||||||
|
package-name = "numix-icon-theme-circle";
|
||||||
|
|
||||||
|
name = "${package-name}-${version}";
|
||||||
|
|
||||||
|
buildInputs = [ unzip ];
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://github.com/numixproject/${package-name}/archive/${version}.zip";
|
||||||
|
sha256 = "672d6f4d000c4c75a64e0297f9609afab1035d082d7ab4f7abe3e2173cba9324";
|
||||||
|
};
|
||||||
|
|
||||||
|
dontBuild = true;
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
ls -lah
|
||||||
|
install -dm 755 $out/usr/share/icons
|
||||||
|
cp -dr --no-preserve='ownership' Numix-Circle{,-Light} $out/usr/share/icons/
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Numix icon theme (circle version)";
|
||||||
|
homepage = https://numixproject.org;
|
||||||
|
platforms = stdenv.lib.platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
30
pkgs/data/icons/numix-icon-theme/default.nix
Normal file
30
pkgs/data/icons/numix-icon-theme/default.nix
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
{ stdenv, fetchurl, unzip }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
version = "2c11fbfcee";
|
||||||
|
|
||||||
|
package-name = "numix-icon-theme";
|
||||||
|
|
||||||
|
name = "${package-name}-${version}";
|
||||||
|
|
||||||
|
buildInputs = [ unzip ];
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://github.com/numixproject/${package-name}/archive/${version}.zip";
|
||||||
|
sha256 = "61dc170b8a70b20a9075f06e1668d6bd8907a6db0ef9e3568c473296d0f351e1";
|
||||||
|
};
|
||||||
|
|
||||||
|
dontBuild = true;
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
ls -lah
|
||||||
|
install -dm 755 $out/usr/share/icons
|
||||||
|
cp -dr --no-preserve='ownership' Numix{,-Light} $out/usr/share/icons/
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Numix icon theme";
|
||||||
|
homepage = https://numixproject.org;
|
||||||
|
platforms = stdenv.lib.platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
@ -9527,6 +9527,10 @@ let
|
|||||||
|
|
||||||
nafees = callPackage ../data/fonts/nafees { };
|
nafees = callPackage ../data/fonts/nafees { };
|
||||||
|
|
||||||
|
numix_icon_theme = callPackage ../data/icons/numix-icon-theme { };
|
||||||
|
|
||||||
|
numix_icon_theme_circle = callPackage ../data/icons/numix-icon-theme-circle { };
|
||||||
|
|
||||||
oldstandard = callPackage ../data/fonts/oldstandard { };
|
oldstandard = callPackage ../data/fonts/oldstandard { };
|
||||||
|
|
||||||
open-dyslexic = callPackage ../data/fonts/open-dyslexic { };
|
open-dyslexic = callPackage ../data/fonts/open-dyslexic { };
|
||||||
|
Loading…
Reference in New Issue
Block a user