diff options
author | Emile <HanEmile@users.noreply.github.com> | 2023-06-09 12:32:18 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-09 12:32:18 +0200 |
commit | 7473733726929e1bfc8672c1873cd75e829e91f7 (patch) | |
tree | 8348ef15bc9d9d6c464dfd17e5926edb2f9eb3b9 | |
parent | 8c1587c751427882769727c4ca2dc8d91c5a132c (diff) |
Update flake.nix
fixed the buildInputs
-rw-r--r-- | flake.nix | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/flake.nix b/flake.nix index 2cdea58..0316e08 100644 --- a/flake.nix +++ b/flake.nix @@ -35,6 +35,7 @@ go-hello = pkgs.buildGoModule { pname = "r2wars"; inherit version; + buildInputs = with pkgs; [ radare2 ]; # In 'nix develop', we don't need a copy of the source tree # in the Nix store. src = ./.; @@ -69,4 +70,4 @@ # package. defaultPackage = forAllSystems (system: self.packages.${system}.go-hello); }; -} \ No newline at end of file +} |