From c36bc725cd801efd53f2db2aee9d91bca616369f Mon Sep 17 00:00:00 2001 From: Rory& Date: Tue, 1 Jul 2025 14:30:12 +0200 Subject: Various changes --- flake.nix | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) (limited to 'flake.nix') 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 + ]; + }; }; } -- cgit 1.5.1