dragnpkgs/templates/default/flake.nix

15 lines
269 B
Nix
Raw Normal View History

2024-12-02 07:11:19 +00:00
{
description = "A very basic flake";
2024-12-02 07:19:49 +00:00
outputs = { self, dragnpkgs } @ inputs: dragnpkgs.lib.mkFlake {
2024-12-02 07:11:19 +00:00
packages.hello = { stdenv }: stdenv.mkDerivation {
name = "hello";
src = self;
installPhase = ''
echo TODO
'';
};
};
}