mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-02 11:03:57 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
63 lines
1.8 KiB
Nix
63 lines
1.8 KiB
Nix
{ lib
|
|
, stdenvNoCC
|
|
, fetchFromGitHub
|
|
, fetchpatch
|
|
, flavour ? [ "frappe" ]
|
|
, accents ? [ "blue" ]
|
|
, winDecStyles ? [ "modern" ]
|
|
}:
|
|
|
|
let
|
|
validFlavours = [ "mocha" "macchiato" "frappe" "latte" ];
|
|
validAccents = [ "rosewater" "flamingo" "pink" "mauve" "red" "maroon" "peach" "yellow" "green" "teal" "sky" "sapphire" "blue" "lavender" ];
|
|
validWinDecStyles = [ "modern" "classic" ];
|
|
|
|
colorScript = ./color.sh;
|
|
in
|
|
|
|
lib.checkListOfEnum "Invalid accent, valid accents are ${toString validAccents}" validAccents accents
|
|
lib.checkListOfEnum "Invalid flavour, valid flavours are ${toString validFlavours}" validFlavours flavour
|
|
lib.checkListOfEnum "Invalid window decoration style, valid styles are ${toString validWinDecStyles}" validWinDecStyles winDecStyles
|
|
|
|
stdenvNoCC.mkDerivation rec {
|
|
pname = "kde";
|
|
version = "0.2.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "catppuccin";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-pfG0L4eSXLYLZM8Mhla4yalpEro74S9kc0sOmQtnG3w=";
|
|
};
|
|
|
|
patches = [
|
|
(fetchpatch {
|
|
url = "https://github.com/GiggleSquid/catppuccin-kde/commit/f0291c17d2e4711b0d0aac00e3dbb94ee89b4a82.patch";
|
|
hash = "sha256-iD+mEX2LRFmrCwLr3VAs6kzcTuZ231TKDn+U188iOss=";
|
|
})
|
|
];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
patchShebangs .
|
|
|
|
for WINDECSTYLE in ${toString winDecStyles}; do
|
|
for FLAVOUR in ${toString flavour}; do
|
|
for ACCENT in ${toString accents}; do
|
|
source ${colorScript}
|
|
./install.sh $FLAVOUR $ACCENT $WINDECSTYLE
|
|
done;
|
|
done;
|
|
done;
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Soothing pastel theme for KDE";
|
|
homepage = "https://github.com/catppuccin/kde";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ michaelBelsanti gigglesquid ];
|
|
};
|
|
}
|