mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-07 06:12:58 +00:00
895a9ca48c
move to finalAttrs use `lib.` explicitly format with nixfmt-rfc-style remove hardcodeZeroVersion per #316264
57 lines
1.3 KiB
Nix
57 lines
1.3 KiB
Nix
{
|
|
stdenvNoCC,
|
|
lib,
|
|
fetchFromGitHub,
|
|
unstableGitUpdater,
|
|
variant ? "macchiato",
|
|
}:
|
|
|
|
let
|
|
pname = "catppuccin-plymouth";
|
|
validVariants = [
|
|
"latte"
|
|
"frappe"
|
|
"macchiato"
|
|
"mocha"
|
|
];
|
|
in
|
|
lib.checkListOfEnum "${pname}: color variant" validVariants [ variant ]
|
|
|
|
stdenvNoCC.mkDerivation
|
|
(finalAttrs: {
|
|
inherit pname;
|
|
version = "0-unstable-2024-05-28";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "catppuccin";
|
|
repo = "plymouth";
|
|
rev = "e13c348a0f47772303b2da1e9396027d8cda160d";
|
|
hash = "sha256-6DliqhRncvdPuKzL9LJec3PJWmK/jo9BrrML7g6YcH0=";
|
|
};
|
|
|
|
sourceRoot = "${finalAttrs.src.name}/themes/catppuccin-${variant}";
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
sed -i 's:\(^ImageDir=\)/usr:\1'"$out"':' catppuccin-${variant}.plymouth
|
|
mkdir -p $out/share/plymouth/themes/catppuccin-${variant}
|
|
cp * $out/share/plymouth/themes/catppuccin-${variant}
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
passthru.updateScript = unstableGitUpdater { };
|
|
|
|
meta = {
|
|
description = "Soothing pastel theme for Plymouth";
|
|
homepage = "https://github.com/catppuccin/plymouth";
|
|
license = lib.licenses.mit;
|
|
platforms = lib.platforms.linux;
|
|
maintainers = with lib.maintainers; [
|
|
johnrtitor
|
|
spectre256
|
|
];
|
|
};
|
|
})
|