From 4baf791e21bb0676c0c7cad84a90ddf83a23ae87 Mon Sep 17 00:00:00 2001 From: Dominik Polakovics Date: Fri, 29 Sep 2023 12:24:25 +0200 Subject: [PATCH] change strongbox --- utils/pkgs/strongbox/default.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/utils/pkgs/strongbox/default.nix b/utils/pkgs/strongbox/default.nix index d629b3e..cc16698 100644 --- a/utils/pkgs/strongbox/default.nix +++ b/utils/pkgs/strongbox/default.nix @@ -11,8 +11,10 @@ stdenv.mkDerivation { sha256 = "sha256-Q/mYfrKTJ3zxkSl2onqWsrRGNtx1KM3AEsOM4hkzMM0="; }; + phases = [ "installPhase" ]; + installPhase = '' - chmod +x strongbox - install -D --target $out/bin * + chmod +x $src + install -D $src $out/bin/strongbox ''; }