feat(zig): init zig template

This commit is contained in:
Artur Manuel 2025-01-25 19:12:23 +00:00
commit 8e52914770
11 changed files with 447 additions and 0 deletions

View file

@ -0,0 +1,24 @@
{
stdenv,
zigpkgs,
zig,
}:
stdenv.mkDerivation {
pname = "REPLACE_ME";
version = "REPLACE_VER";
src = ../.;
nativeBuildInputs = [
(zig.hook.overrideAttrs (_: {
propagatedBuildInputs = [
zigpkgs.master
];
}))
];
meta = {
description = "REPLACE_DESC";
homepage = "REPLACE_HOME";
};
}