Merge pull request #329823 from ExpidusOS/fix/pkgsllvm/elfutils
[NixPkgs.git] / pkgs / by-name / ev / everforest-gtk-theme / package.nix
blob943c743f894d8a64486716c497d84c43324e6310
1 { lib
2 , stdenvNoCC
3 , fetchFromGitHub
4 , gnome-themes-extra
5 , gtk-engine-murrine
6 }:
8 stdenvNoCC.mkDerivation {
9   pname = "everforest-gtk-theme";
10   version = "0-unstable-2023-03-20";
12   src = fetchFromGitHub {
13     owner = "Fausto-Korpsvart";
14     repo = "Everforest-GTK-Theme";
15     rev = "8481714cf9ed5148694f1916ceba8fe21e14937b";
16     sha256 = "sha256-NO12ku8wnW/qMHKxi5TL/dqBxH0+cZbe+fU0iicb9JU=";
17   };
19   propagatedUserEnvPkgs = [
20     gtk-engine-murrine
21   ];
23   buildInputs = [
24     gnome-themes-extra
25   ];
27   dontBuild = true;
29   installPhase = ''
30     runHook preInstall
31     mkdir -p "$out/share/"{themes,icons}
32     cp -a icons/* "$out/share/icons/"
33     cp -a themes/* "$out/share/themes/"
34     runHook postInstall
35   '';
37   meta = with lib; {
38     description = "Everforest colour palette for GTK";
39     homepage = "https://github.com/Fausto-Korpsvart/Everforest-GTK-Theme";
40     license = licenses.gpl3Only;
41     maintainers = with maintainers; [ jn-sena ];
42     platforms = platforms.unix;
43   };