571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
40 lines
1.1 KiB
Nix
40 lines
1.1 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 ];
|
|
};
|
|
}
|