blob: 35ee9d964aa7088c42e7e1fd18de21fc21aa0055 [file] [log] [blame]
Skyler Greycfee0962022-08-19 22:40:53 +01001{
2 description = "A basic flake with a shell";
3 inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
4 inputs.flake-utils.url = "github:numtide/flake-utils";
5
Skyler Grey252927a2022-10-18 22:18:15 +01006 outputs =
7 { self
8 , nixpkgs
9 , flake-utils
10 ,
11 }:
12 flake-utils.lib.eachDefaultSystem (system:
13 let
Skyler Greycfee0962022-08-19 22:40:53 +010014 pkgs = nixpkgs.legacyPackages.${system};
Skyler Grey252927a2022-10-18 22:18:15 +010015 in
16 {
Skyler Greycfee0962022-08-19 22:40:53 +010017 devShell = pkgs.mkShell {
Skyler Grey252927a2022-10-18 22:18:15 +010018 nativeBuildInputs = with pkgs; [ bashInteractive ncurses ];
19 buildInputs = [ ];
Skyler Greycfee0962022-08-19 22:40:53 +010020 };
21 });
22}