summary refs log tree commit diff
path: root/flake.nix
diff options
context:
space:
mode:
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 + ]; + }; }; }