Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
60 lines
1.2 KiB
Nix
60 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
gnome-shell,
|
|
gnome-themes-extra,
|
|
glib,
|
|
libxml2,
|
|
gtk-engine-murrine,
|
|
gdk-pixbuf,
|
|
librsvg,
|
|
bc,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "equilux-theme";
|
|
version = "20181029";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ddnexus";
|
|
repo = "equilux-theme";
|
|
rev = "equilux-v${version}";
|
|
sha256 = "0lv2yyxhnmnkwxp576wnb01id4fp734b5z5n0l67sg5z7vc2h8fc";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
glib
|
|
libxml2
|
|
bc
|
|
];
|
|
|
|
buildInputs = [
|
|
gnome-themes-extra
|
|
gdk-pixbuf
|
|
librsvg
|
|
];
|
|
|
|
propagatedUserEnvPkgs = [ gtk-engine-murrine ];
|
|
|
|
dontBuild = true;
|
|
|
|
installPhase = ''
|
|
patchShebangs install.sh
|
|
sed -i install.sh \
|
|
-e "s|if .*which gnome-shell.*;|if true;|" \
|
|
-e "s|CURRENT_GS_VERSION=.*$|CURRENT_GS_VERSION=${lib.versions.majorMinor gnome-shell.version}|"
|
|
mkdir -p $out/share/themes
|
|
./install.sh --dest $out/share/themes
|
|
rm $out/share/themes/*/COPYING
|
|
'';
|
|
|
|
meta = with lib; {
|
|
inherit (src.meta) homepage;
|
|
description = "Material Design theme for GNOME/GTK based desktop environments";
|
|
license = licenses.gpl2;
|
|
platforms = platforms.all;
|
|
maintainers = [ maintainers.fpletz ];
|
|
};
|
|
}
|