Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
107 lines
2.5 KiB
Nix
107 lines
2.5 KiB
Nix
{
|
|
lib,
|
|
stdenvNoCC,
|
|
fetchFromGitHub,
|
|
bash,
|
|
just,
|
|
catppuccin-whiskers,
|
|
kdePackages,
|
|
flavor ? "mocha",
|
|
accent ? "mauve",
|
|
font ? "Noto Sans",
|
|
fontSize ? "9",
|
|
background ? null,
|
|
disableBackground ? false,
|
|
loginBackground ? false,
|
|
userIcon ? false,
|
|
clockEnabled ? true,
|
|
}:
|
|
stdenvNoCC.mkDerivation (finalAttrs: {
|
|
pname = "catppuccin-sddm";
|
|
version = "1.1.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "catppuccin";
|
|
repo = "sddm";
|
|
tag = "v${finalAttrs.version}";
|
|
hash = "sha256-7S0DKyb+4lP+5HCPAJRw/KDls2ZO9kksdlwYSz2uQC8=";
|
|
};
|
|
|
|
dontWrapQtApps = true;
|
|
|
|
nativeBuildInputs = [
|
|
just
|
|
catppuccin-whiskers
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
kdePackages.qtsvg
|
|
];
|
|
|
|
postPatch = ''
|
|
substituteInPlace justfile \
|
|
--replace-fail '#!/usr/bin/env bash' '#!${lib.getExe bash}'
|
|
'';
|
|
|
|
buildPhase = ''
|
|
runHook preBuild
|
|
|
|
just build
|
|
|
|
runHook postBuild
|
|
'';
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir -p "$out/share/sddm/themes/"
|
|
cp -r themes/catppuccin-${flavor}-${accent} "$out/share/sddm/themes/catppuccin-${flavor}-${accent}"
|
|
|
|
configFile=$out/share/sddm/themes/catppuccin-${flavor}-${accent}/theme.conf
|
|
|
|
substituteInPlace $configFile \
|
|
--replace-fail 'Font="Noto Sans"' 'Font="${font}"' \
|
|
--replace-fail 'FontSize=9' 'FontSize=${fontSize}'
|
|
|
|
${lib.optionalString (background != null) ''
|
|
substituteInPlace $configFile \
|
|
--replace-fail 'Background="backgrounds/wall.png"' 'Background="${background}"'
|
|
''}
|
|
|
|
${lib.optionalString disableBackground ''
|
|
substituteInPlace $configFile \
|
|
--replace-fail 'CustomBackground="true"' 'CustomBackground="false"'
|
|
''}
|
|
|
|
${lib.optionalString loginBackground ''
|
|
substituteInPlace $configFile \
|
|
--replace-fail 'LoginBackground="false"' 'LoginBackground="true"'
|
|
''}
|
|
|
|
${lib.optionalString userIcon ''
|
|
substituteInPlace $configFile \
|
|
--replace-fail 'UserIcon="false"' 'UserIcon="true"'
|
|
''}
|
|
|
|
${lib.optionalString (!clockEnabled) ''
|
|
substituteInPlace $configFile \
|
|
--replace-fail 'ClockEnabled="true"' 'ClockEnabled="false"'
|
|
''}
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
postFixup = ''
|
|
mkdir -p $out/nix-support
|
|
echo ${kdePackages.qtsvg} >> $out/nix-support/propagated-user-env-packages
|
|
'';
|
|
|
|
meta = {
|
|
description = "Soothing pastel theme for SDDM";
|
|
homepage = "https://github.com/catppuccin/sddm";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ gipphe ];
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
})
|