2022-05-26 23:43:22 +01:00
|
|
|
{
|
|
|
|
description = "A basic flake from samw";
|
|
|
|
inputs = {
|
|
|
|
utils.url = "github:numtide/flake-utils";
|
|
|
|
devshell.url = "github:numtide/devshell";
|
|
|
|
};
|
|
|
|
outputs = { self, nixpkgs, utils, devshell }:
|
|
|
|
utils.lib.eachDefaultSystem (system: {
|
2022-06-19 15:16:07 +01:00
|
|
|
devShells.default = let
|
2022-05-26 23:43:22 +01:00
|
|
|
pkgs = import nixpkgs {
|
|
|
|
inherit system;
|
|
|
|
|
|
|
|
overlays = [ devshell.overlay ];
|
|
|
|
};
|
|
|
|
in pkgs.devshell.mkShell { packages = with pkgs; [ ]; };
|
|
|
|
});
|
|
|
|
}
|