diff --git a/pkgs/data/themes/gtk-theme-framework/default.nix b/pkgs/data/themes/gtk-theme-framework/default.nix new file mode 100644 index 00000000000..99b9edfc3ac --- /dev/null +++ b/pkgs/data/themes/gtk-theme-framework/default.nix @@ -0,0 +1,36 @@ +{ stdenv, fetchFromGitHub, theme, lib }: + +stdenv.mkDerivation rec { + pname = "gtk-theme-framework"; + version = "0.2.3"; + + src = fetchFromGitHub { + owner = "jaxwilko"; + repo = pname; + rev = "v${version}"; + sha256 = "1z5s5rsgiypanf2z0avaisbflnvwrc8aiy5qskrsvbbaja63jy3s"; + }; + + postPatch = '' + substituteInPlace main.sh \ + --replace "#!/usr/bin/env bash" "#!/bin/sh" + + substituteInPlace scripts/install.sh \ + --replace "#!/usr/bin/env bash" "#!/bin/sh" + ''; + + installPhase = '' + runHook preInstall + + mkdir -p $out/share/themes + ./main.sh -i -t ${theme} -d $out/share/themes + + runHook postInstall + ''; + + meta = with lib; { + homepage = "https://github.com/jaxwilko/gtk-theme-framework"; + license = licenses.gpl3Only; + maintainers = with maintainers; [ flexagoon ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 18c5484a9b1..3e1a69963bd 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -22729,6 +22729,16 @@ with pkgs; gruvbox-dark-gtk = callPackage ../data/themes/gruvbox-dark-gtk { }; + palenight-theme = callPackage ../data/themes/gtk-theme-framework { theme = "palenight"; }; + + amarena-theme = callPackage ../data/themes/gtk-theme-framework { theme = "amarena"; }; + + gruvterial-theme = callPackage ../data/themes/gtk-theme-framework { theme = "gruvterial"; }; + + oceanic-theme = callPackage ../data/themes/gtk-theme-framework { theme = "oceanic"; }; + + spacx-gtk-theme = callPackage ../data/themes/gtk-theme-framework { theme = "spacx"; }; + gruvbox-dark-icons-gtk = callPackage ../data/icons/gruvbox-dark-icons-gtk { inherit (plasma5Packages) breeze-icons; };