summary refs log tree commit diff
path: root/flake.nix
diff options
context:
space:
mode:
authorRory& <root@rory.gay>2025-06-05 05:55:45 +0200
committerRory& <root@rory.gay>2025-06-05 05:55:45 +0200
commitb13161b321d43c31d2c126e38a96d3deee5a70ef (patch)
treeaa92c473f58844330583f3e43aed02433aa0e71d /flake.nix
parentPattern update, add cli flags (diff)
downloadBlockScrapersC-b13161b321d43c31d2c126e38a96d3deee5a70ef.tar.xz
Changes
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix11
1 files changed, 11 insertions, 0 deletions
diff --git a/flake.nix b/flake.nix
new file mode 100644

index 0000000..c384ad5 --- /dev/null +++ b/flake.nix
@@ -0,0 +1,11 @@ +{ + inputs.nixpkgs.url = "github:NixOS/nixpkgs"; + + outputs = { self, nixpkgs }: { + devShells.default = nixpkgs.lib.mkShell { + buildInputs = [ + nixpkgs.libnftnl + ]; + }; + }; +}