diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-08-23 21:37:16 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-08-23 21:37:16 +1000 |
| commit | b52822f3dae8bbe366a206a5c04679617bc80ffd (patch) | |
| tree | a4c7e6f900dbec9ef24359fce48337bb5b3097c2 | |
| parent | config: player aliases + config default player (diff) | |
| download | caelestia-shell-b52822f3dae8bbe366a206a5c04679617bc80ffd.tar.gz caelestia-shell-b52822f3dae8bbe366a206a5c04679617bc80ffd.tar.bz2 caelestia-shell-b52822f3dae8bbe366a206a5c04679617bc80ffd.zip | |
nix: fix patch
Merge fail :woe:
| -rw-r--r-- | nix/default.nix | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/nix/default.nix b/nix/default.nix index 2e996d0..29a93cb 100644 --- a/nix/default.nix +++ b/nix/default.nix @@ -74,11 +74,6 @@ nativeBuildInputs = [gcc]; buildInputs = [aubio pipewire]; - patchPhase = '' - substituteInPlace assets/pam.d/fprint \ - --replace-fail pam_fprintd.so /run/current-system/sw/lib/security/pam_fprintd.so - ''; - buildPhase = '' mkdir -p bin g++ -std=c++17 -Wall -Wextra \ @@ -128,6 +123,11 @@ in buildInputs = [quickshell beatDetector idleInhibitor qt6.qtbase]; propagatedBuildInputs = runtimeDeps; + patchPhase = '' + substituteInPlace assets/pam.d/fprint \ + --replace-fail pam_fprintd.so /run/current-system/sw/lib/security/pam_fprintd.so + ''; + installPhase = '' mkdir -p $out/share/caelestia-shell cp -r ./* $out/share/caelestia-shell |