mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
2641d97cbf
Reproduction script: # Bulk rewrite ./maintainers/scripts/sha-to-sri.py pkgs/by-name # Revert some packages which will need manual intervention for n in amdvlk azure-cli cargo-profiler corefonts flatito fluxcd gist perf_data_converter protoc-gen-js solana-cli swt verible; do git checkout -- "pkgs/by-name/${n:0:2}/${n}" done
44 lines
990 B
Nix
44 lines
990 B
Nix
{ lib
|
|
, stdenvNoCC
|
|
, fetchFromGitHub
|
|
, gnome-themes-extra
|
|
, gtk-engine-murrine
|
|
}:
|
|
|
|
stdenvNoCC.mkDerivation {
|
|
pname = "everforest-gtk-theme";
|
|
version = "0-unstable-2023-03-20";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Fausto-Korpsvart";
|
|
repo = "Everforest-GTK-Theme";
|
|
rev = "8481714cf9ed5148694f1916ceba8fe21e14937b";
|
|
hash = "sha256-NO12ku8wnW/qMHKxi5TL/dqBxH0+cZbe+fU0iicb9JU=";
|
|
};
|
|
|
|
propagatedUserEnvPkgs = [
|
|
gtk-engine-murrine
|
|
];
|
|
|
|
buildInputs = [
|
|
gnome-themes-extra
|
|
];
|
|
|
|
dontBuild = true;
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
mkdir -p "$out/share/"{themes,icons}
|
|
cp -a icons/* "$out/share/icons/"
|
|
cp -a themes/* "$out/share/themes/"
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Everforest colour palette for GTK";
|
|
homepage = "https://github.com/Fausto-Korpsvart/Everforest-GTK-Theme";
|
|
license = licenses.gpl3Only;
|
|
maintainers = with maintainers; [ jn-sena ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|