14 lines
299 B
Nix
14 lines
299 B
Nix
|
{
|
||
|
description = "Flake utils demo";
|
||
|
|
||
|
inputs.flake-utils.url = "github:numtide/flake-utils";
|
||
|
|
||
|
outputs = { self, nixpkgs, flake-utils }:
|
||
|
flake-utils.lib.simpleFlake {
|
||
|
inherit self nixpkgs;
|
||
|
name = "simple-flake";
|
||
|
overlay = ./overlay.nix;
|
||
|
shell = ./shell.nix;
|
||
|
};
|
||
|
}
|