3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/data/themes/orchis-theme/default.nix

46 lines
986 B
Nix
Raw Normal View History

2021-04-21 16:37:27 +01:00
{ lib
, stdenvNoCC
, fetchFromGitHub
, gtk3
, gnome-themes-extra
, gtk-engine-murrine
, sassc
, accentColor ? "default"
}:
stdenvNoCC.mkDerivation rec {
pname = "orchis-theme";
version = "2021-06-09";
2021-01-30 20:20:34 +00:00
src = fetchFromGitHub {
repo = "Orchis-theme";
owner = "vinceliuice";
rev = version;
sha256 = "sha256-YlrocFDk3da2eqxbJ5lPUUxHHvJZx19LOa0MSljWY8Q=";
2021-01-30 20:20:34 +00:00
};
2021-04-21 16:37:27 +01:00
nativeBuildInputs = [ gtk3 sassc ];
2021-01-30 20:20:34 +00:00
buildInputs = [ gnome-themes-extra ];
propagatedUserEnvPkgs = [ gtk-engine-murrine ];
preInstall = ''
mkdir -p $out/share/themes
'';
installPhase = ''
runHook preInstall
bash install.sh -d $out/share/themes -t ${accentColor}
runHook postInstall
'';
meta = with lib; {
description = "A Material Design theme for GNOME/GTK based desktop environments.";
homepage = "https://github.com/vinceliuice/Orchis-theme";
license = licenses.gpl3Plus;
platforms = platforms.linux;
maintainers = [ maintainers.fufexan ];
};
}