move templates

This commit is contained in:
2026-03-28 16:20:41 +01:00
parent fc166785ee
commit d6b6751ebd
15 changed files with 229 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
{
cmake,
stdenv,
...
}:
stdenv.mkDerivation (finalAttrs: {
pname = "my-derivation";
version = "0.1.0";
src = ../.;
nativeBuildInputs = [cmake];
buildInputs = [];
meta = {
description = "Hello World Binary";
mainProgram = "hello";
};
})