From b4a21508c8f2923af488256d42b807bdfe3a6b34 Mon Sep 17 00:00:00 2001 From: Linnea Gräf Date: Mon, 12 May 2025 21:13:04 +0200 Subject: fix nix run .#boobbot --- flake.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 8214933..8a1ef59 100644 --- a/flake.nix +++ b/flake.nix @@ -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]; -- cgit