From 2323a6c0b47a110bbee93c4c9b509f89eacd7b48 Mon Sep 17 00:00:00 2001 From: plebhash Date: Tue, 24 Oct 2023 17:50:14 -0300 Subject: [PATCH 1/3] bootstrap shell.nix --- shell.nix | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 shell.nix diff --git a/shell.nix b/shell.nix new file mode 100644 index 00000000..e4dac574 --- /dev/null +++ b/shell.nix @@ -0,0 +1,9 @@ +let + nixpkgs = import {}; +in +with nixpkgs; pkgs.mkShell { + buildInputs = [ + libusb1 + pkg-config + ]; +} From 61612214f7e964ebb005b6e81dcdb7871d48a3a0 Mon Sep 17 00:00:00 2001 From: plebhash Date: Tue, 24 Oct 2023 19:39:31 -0300 Subject: [PATCH 2/3] add rustup to shell.nix dependencies --- shell.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/shell.nix b/shell.nix index e4dac574..e89399e9 100644 --- a/shell.nix +++ b/shell.nix @@ -5,5 +5,6 @@ with nixpkgs; pkgs.mkShell { buildInputs = [ libusb1 pkg-config + rustup ]; } From 955002d52b8bd623f4860909451b704a41748eed Mon Sep 17 00:00:00 2001 From: plebhash Date: Wed, 25 Oct 2023 12:45:30 -0300 Subject: [PATCH 3/3] mv shell.nix .nix/shell.nix --- shell.nix => .nix/shell.nix | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename shell.nix => .nix/shell.nix (100%) diff --git a/shell.nix b/.nix/shell.nix similarity index 100% rename from shell.nix rename to .nix/shell.nix