diff options
| author | Claudius "keldu" Holeksa <mail@keldu.de> | 2026-02-25 22:22:36 +0100 |
|---|---|---|
| committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2026-02-25 22:22:36 +0100 |
| commit | f3bdd223f06fe7dd54b6cf72fdc468e521642e6f (patch) | |
| tree | 982dbf24a97609dee82bf2ebc451140f2c1af89b /examples/meta/.nix/derivation.nix | |
| parent | 54e3bf6ba8385c3722d4cc14dccf3c3a1ae42627 (diff) | |
| parent | 2ac145b3bb6d2de3887ab08e0cf26423b5e6c5ee (diff) | |
| download | libs-lbm-f3bdd223f06fe7dd54b6cf72fdc468e521642e6f.tar.gz | |
Merge branch 'dev'
Diffstat (limited to 'examples/meta/.nix/derivation.nix')
| -rw-r--r-- | examples/meta/.nix/derivation.nix | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/examples/meta/.nix/derivation.nix b/examples/meta/.nix/derivation.nix new file mode 100644 index 0000000..26706e6 --- /dev/null +++ b/examples/meta/.nix/derivation.nix @@ -0,0 +1,33 @@ +{ lib +, stdenv +, scons +, clang-tools +, forstio +, pname +, version +, kel +}: + +stdenv.mkDerivation { + pname = pname + "-examples-" + "meta_2d"; + inherit version; + src = ./..; + + nativeBuildInputs = [ + scons + clang-tools + ]; + + buildInputs = [ + forstio.core + forstio.async + forstio.codec + forstio.codec-unit + forstio.codec-json + kel.lbm.core + ]; + + preferLocalBuild = true; + + outputs = [ "out" "dev" ]; +} |
