nixpkgs/pkgs/data/themes/vimix/default.nix

49 lines
1 KiB
Nix
Raw Normal View History

{ lib
, stdenv
, fetchFromGitHub
, gnome-shell
, gtk-engine-murrine
, gtk_engines
}:
2020-02-24 15:51:12 +00:00
stdenv.mkDerivation rec {
pname = "vimix-gtk-themes";
version = "2021-08-09";
2020-02-24 15:51:12 +00:00
src = fetchFromGitHub {
owner = "vinceliuice";
repo = pname;
rev = version;
sha256 = "0j6sq7z4zqc9q4hqcq4y9vh4qpgl0v1i353l6rcd6bh1r594rwjm";
2020-02-24 15:51:12 +00:00
};
nativeBuildInputs = [
gnome-shell # needed to determine the gnome-shell version
];
2020-02-24 15:51:12 +00:00
buildInputs = [
gtk_engines
];
propagatedUserEnvPkgs = [
gtk-engine-murrine
];
2020-02-24 15:51:12 +00:00
installPhase = ''
runHook preInstall
2020-02-24 15:51:12 +00:00
patchShebangs .
mkdir -p $out/share/themes
name= ./install.sh --all --dest $out/share/themes
2020-02-24 15:51:12 +00:00
rm $out/share/themes/*/{AUTHORS,LICENSE}
runHook postInstall
2020-02-24 15:51:12 +00:00
'';
meta = with lib; {
2020-02-24 15:51:12 +00:00
description = "Flat Material Design theme for GTK based desktop environments";
homepage = "https://github.com/vinceliuice/vimix-gtk-themes";
license = licenses.gpl3Only;
2020-02-24 15:51:12 +00:00
platforms = platforms.unix;
maintainers = [ maintainers.romildo ];
};
}