Some checks are pending
CI / Format Nix files (push) Waiting to run
CI / Test Modules (push) Waiting to run
CI / Validate sources (push) Waiting to run
Release / Make release (push) Waiting to run
Release / Publish to Flake registries (push) Blocked by required conditions
Build & deploy website / Build site (push) Waiting to run
Build & deploy website / Deploy website (push) Blocked by required conditions
26 lines
514 B
Nix
26 lines
514 B
Nix
{
|
|
stdenvNoCC,
|
|
libsForQt5,
|
|
sources,
|
|
}:
|
|
stdenvNoCC.mkDerivation {
|
|
pname = "sddm-rose-pine-theme";
|
|
version = "1.2";
|
|
# dontBuild = true;
|
|
|
|
# propagatedUserEnvPkgs = [
|
|
# libsForQt5.qt5.qtgraphicaleffects
|
|
# libsForQt5.qt5.qtquickcontrols2
|
|
# libsForQt5.qt5.qtsvg
|
|
# ];
|
|
|
|
dontWrapQtApps = true;
|
|
buildInputs = [libsForQt5.qt5.qtgraphicaleffects];
|
|
|
|
src = sources.sddm-rose-pine;
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/share/sddm/themes
|
|
cp -aR $src $out/share/sddm/themes/rose-pine
|
|
'';
|
|
}
|