diff options
| author | Claudius "keldu" Holeksa <mail@keldu.de> | 2026-01-12 16:05:22 +0100 |
|---|---|---|
| committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2026-01-12 16:05:22 +0100 |
| commit | 6eb839f219d80c018a58865a79f0623e839cef09 (patch) | |
| tree | b9668086665748487cb9be6e8de5eaeda838405c /kel_cmds/.nix/derivation.nix | |
| parent | af4bb05489eae478420a1792419fe43ee4b732d3 (diff) | |
| download | apps-dev_tools-6eb839f219d80c018a58865a79f0623e839cef09.tar.gz | |
Adding commands
Diffstat (limited to 'kel_cmds/.nix/derivation.nix')
| -rw-r--r-- | kel_cmds/.nix/derivation.nix | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/kel_cmds/.nix/derivation.nix b/kel_cmds/.nix/derivation.nix new file mode 100644 index 0000000..ac8f771 --- /dev/null +++ b/kel_cmds/.nix/derivation.nix @@ -0,0 +1,23 @@ +{ stdenv +, scons +, clang-tools +, forstio +}: + +stdenv.mkDerivation { + pname = "kel_cmds"; + version = "0.0.0"; + + nativeBuildInputs = [ + clang-tools + scons + ]; + + buildInputs = [ + forstio.core + forstio.codec + forstio.codec-json + ]; + + src = ./..; +} |
