summary refs log tree commit diff
path: root/flake.nix
diff options
context:
space:
mode:
authorRory& <root@rory.gay>2025-07-01 14:30:12 +0200
committerRory& <root@rory.gay>2025-07-01 14:30:12 +0200
commitc36bc725cd801efd53f2db2aee9d91bca616369f (patch)
treeb4c39ca5aad314be66259a6bc602c9198046bf82 /flake.nix
parentDeduplicate patterns, fix dedup.c (diff)
downloadBlockScrapersC-c36bc725cd801efd53f2db2aee9d91bca616369f.tar.xz
Various changes
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix19
1 files changed, 13 insertions, 6 deletions
diff --git a/flake.nix b/flake.nix

index c384ad5..351c138 100644 --- a/flake.nix +++ b/flake.nix
@@ -1,11 +1,18 @@ { inputs.nixpkgs.url = "github:NixOS/nixpkgs"; - outputs = { self, nixpkgs }: { - devShells.default = nixpkgs.lib.mkShell { - buildInputs = [ - nixpkgs.libnftnl - ]; - }; + outputs = { self, nixpkgs }: + let + system = "x86_64-linux"; + pkgs = import nixpkgs { + inherit system; + }; + in { + devShells.x86_64-linux.default = pkgs.mkShell { + buildInputs = [ + pkgs.meson + pkgs.gcc + ]; + }; }; }