mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
Added Numix GTK theme, removed unnecessary ls -lah in Numix/Numix-Circle icon themes
This commit is contained in:
parent
3876279b10
commit
7648cb2456
@ -17,7 +17,6 @@ stdenv.mkDerivation rec {
|
||||
dontBuild = true;
|
||||
|
||||
installPhase = ''
|
||||
ls -lah
|
||||
install -dm 755 $out/usr/share/icons
|
||||
cp -dr --no-preserve='ownership' Numix-Circle{,-Light} $out/usr/share/icons/
|
||||
'';
|
||||
|
@ -17,7 +17,6 @@ stdenv.mkDerivation rec {
|
||||
dontBuild = true;
|
||||
|
||||
installPhase = ''
|
||||
ls -lah
|
||||
install -dm 755 $out/usr/share/icons
|
||||
cp -dr --no-preserve='ownership' Numix{,-Light} $out/usr/share/icons/
|
||||
'';
|
||||
|
24
pkgs/misc/themes/gtk3/numix/default.nix
Normal file
24
pkgs/misc/themes/gtk3/numix/default.nix
Normal file
@ -0,0 +1,24 @@
|
||||
{ stdenv, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "2.2.3";
|
||||
name = "numix-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/shimmerproject/Numix/archive/v${version}.tar.gz";
|
||||
sha256 = "b0acc2d81300b898403766456d3406304553cc7016677381f3179dbeb1192a2d";
|
||||
};
|
||||
|
||||
dontBuild = true;
|
||||
|
||||
installPhase = ''
|
||||
install -dm 755 $out/usr/share/themes/Numix
|
||||
cp -dr --no-preserve='ownership' {LICENSE,CREDITS,index.theme,gtk-2.0,gtk-3.0,metacity-1,openbox-3,unity,xfce-notify-4.0,xfwm4} $out/usr/share/themes/Numix/
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "Numix GTK theme";
|
||||
homepage = https://numixproject.org;
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
};
|
||||
}
|
@ -12841,6 +12841,8 @@ let
|
||||
|
||||
mate-themes = callPackage ../misc/themes/mate-themes { };
|
||||
|
||||
numix = callPackage ../misc/themes/gtk3/numix { };
|
||||
|
||||
plasma52 = recurseIntoAttrs (callPackage ../desktops/plasma-5.2 {
|
||||
qt5 = qt54;
|
||||
kf5 = kf57;
|
||||
|
Loading…
Reference in New Issue
Block a user