From 6637ef371082d88c45952f1094df709ea988b7b4 Mon Sep 17 00:00:00 2001 From: sadbeast Date: Thu, 1 Feb 2024 16:11:53 -0800 Subject: initial mistake --- flake.nix | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 flake.nix (limited to 'flake.nix') diff --git a/flake.nix b/flake.nix new file mode 100644 index 0000000..ac88504 --- /dev/null +++ b/flake.nix @@ -0,0 +1,26 @@ +{ + description = "anxiety"; + + inputs = { + nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; + flake-utils.url = "github:numtide/flake-utils"; + }; + + outputs = { + nixpkgs, + flake-utils, + ... + }: + flake-utils.lib.eachDefaultSystem ( + system: let + pkgs = nixpkgs.legacyPackages.${system}; + + nativeBuildInputs = with pkgs; [ + gnumake + ]; + buildInputs = with pkgs; []; + in { + devShells.default = pkgs.mkShell {inherit nativeBuildInputs buildInputs;}; + } + ); +} -- cgit v1.2.3