diff options
| author | Linnea Gräf <nea@nea.moe> | 2025-05-12 21:13:04 +0200 |
|---|---|---|
| committer | Linnea Gräf <nea@nea.moe> | 2025-05-12 21:13:04 +0200 |
| commit | b4a21508c8f2923af488256d42b807bdfe3a6b34 (patch) | |
| tree | fe9a15b47294fa816ffef65904aca4d601a67007 | |
| parent | 54a586d295e3069447dfd47e97948a71a791a456 (diff) | |
| download | boobbot-b4a21508c8f2923af488256d42b807bdfe3a6b34.tar.gz boobbot-b4a21508c8f2923af488256d42b807bdfe3a6b34.tar.bz2 boobbot-b4a21508c8f2923af488256d42b807bdfe3a6b34.zip | |
fix nix run .#boobbot
| -rw-r--r-- | flake.nix | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -17,7 +17,7 @@ ... }: { packages = { - boobbot = pkgs.buildDubPackage { + boobbot = pkgs.buildDubPackage rec { pname = "boobbot"; version = "0.0.0"; src = ./.; @@ -25,6 +25,7 @@ installPhase = '' runHook preInstall install -Dm755 boobbot -t $out/bin + patchelf --set-rpath ${pkgs.lib.makeLibraryPath buildInputs} $out/bin/boobbot runHook postInstall ''; buildInputs = [pkgs.openssl]; |
