Merge pull request #51494 from romildo/upd.nordic-polar
nordic-polar: init at 1.3.0
This commit is contained in:
commit
b6cc4ae367
35
pkgs/data/themes/nordic-polar/default.nix
Normal file
35
pkgs/data/themes/nordic-polar/default.nix
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
{ stdenv, fetchurl, gtk-engine-murrine }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "nordic-polar-${version}";
|
||||||
|
version = "1.3.0";
|
||||||
|
|
||||||
|
srcs = [
|
||||||
|
(fetchurl {
|
||||||
|
url = "https://github.com/EliverLara/Nordic-Polar/releases/download/v${version}/Nordic-Polar.tar.xz";
|
||||||
|
sha256 = "1c5zgymkwd89fr680c49siwbkhfbay56iq9vlyqkj1dp0xnc528s";
|
||||||
|
})
|
||||||
|
(fetchurl {
|
||||||
|
url = "https://github.com/EliverLara/Nordic-Polar/releases/download/v${version}/Nordic-Polar-standard-buttons.tar.xz";
|
||||||
|
sha256 = "0nxzcgqzc42qvnhafranz6rwanqb4wzf9ychm5m4yrlp3ngw38p4";
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
|
sourceRoot = ".";
|
||||||
|
|
||||||
|
propagatedUserEnvPkgs = [ gtk-engine-murrine ];
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
mkdir -p $out/share/themes
|
||||||
|
cp -a Nordic-Polar* $out/share/themes
|
||||||
|
rm $out/share/themes/*/{LICENSE,README.md}
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Gtk theme created using the awesome Nord color pallete";
|
||||||
|
homepage = https://github.com/EliverLara/Nordic-Polar;
|
||||||
|
license = licenses.gpl3;
|
||||||
|
platforms = platforms.all;
|
||||||
|
maintainers = [ maintainers.romildo ];
|
||||||
|
};
|
||||||
|
}
|
@ -15482,6 +15482,8 @@ in
|
|||||||
|
|
||||||
nafees = callPackage ../data/fonts/nafees { };
|
nafees = callPackage ../data/fonts/nafees { };
|
||||||
|
|
||||||
|
nordic-polar = callPackage ../data/themes/nordic-polar { };
|
||||||
|
|
||||||
inherit (callPackages ../data/fonts/noto-fonts {})
|
inherit (callPackages ../data/fonts/noto-fonts {})
|
||||||
noto-fonts noto-fonts-cjk noto-fonts-emoji noto-fonts-extra;
|
noto-fonts noto-fonts-cjk noto-fonts-emoji noto-fonts-extra;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user