nixpkgs/pkgs/data/themes/gtk-theme-framework/default.nix
Atemu 3ac86e8328 tree-wide: remove flexagoon from maintainers
> You can remove me from all of my packages if there are any left, I'm no longer using Nix and no longer maintain any packages

https://github.com/NixOS/nixpkgs/pull/290682#issuecomment-1974827679
2024-03-02 17:41:04 +01:00

37 lines
816 B
Nix

{ 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; [ ];
};
}