nixpkgs/pkgs/data/themes/nordic-polar/default.nix

36 lines
1 KiB
Nix
Raw Normal View History

2018-12-04 02:44:07 +00:00
{ stdenv, fetchurl, gtk-engine-murrine }:
stdenv.mkDerivation rec {
pname = "nordic-polar";
2019-04-20 21:19:40 +00:00
version = "1.5.0";
2018-12-04 02:44:07 +00:00
srcs = [
(fetchurl {
2019-04-20 21:19:40 +00:00
url = "https://github.com/EliverLara/Nordic-Polar/releases/download/v.${version}/Nordic-Polar.tar.xz";
sha256 = "0ddccxvyf929045x6fm8xyx6rvb0d6wh6pylycwgqqm4vxbdwnly";
2018-12-04 02:44:07 +00:00
})
(fetchurl {
2019-04-20 21:19:40 +00:00
url = "https://github.com/EliverLara/Nordic-Polar/releases/download/v.${version}/Nordic-Polar-standard-buttons.tar.xz";
sha256 = "0q0qfy0aw80rds6isx3pjrqx4zrq2crxrm29nrmyzh4gr7n17li6";
2018-12-04 02:44:07 +00:00
})
];
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 ];
};
}