summaryrefslogtreecommitdiff
path: root/examples/meta_2d/.nix
diff options
context:
space:
mode:
authorClaudius "keldu" Holeksa <mail@keldu.de>2026-02-25 22:22:36 +0100
committerClaudius "keldu" Holeksa <mail@keldu.de>2026-02-25 22:22:36 +0100
commitf3bdd223f06fe7dd54b6cf72fdc468e521642e6f (patch)
tree982dbf24a97609dee82bf2ebc451140f2c1af89b /examples/meta_2d/.nix
parent54e3bf6ba8385c3722d4cc14dccf3c3a1ae42627 (diff)
parent2ac145b3bb6d2de3887ab08e0cf26423b5e6c5ee (diff)
downloadlibs-lbm-f3bdd223f06fe7dd54b6cf72fdc468e521642e6f.tar.gz
Merge branch 'dev'
Diffstat (limited to 'examples/meta_2d/.nix')
-rw-r--r--examples/meta_2d/.nix/derivation.nix33
1 files changed, 0 insertions, 33 deletions
diff --git a/examples/meta_2d/.nix/derivation.nix b/examples/meta_2d/.nix/derivation.nix
deleted file mode 100644
index 26706e6..0000000
--- a/examples/meta_2d/.nix/derivation.nix
+++ /dev/null
@@ -1,33 +0,0 @@
-{ 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" ];
-}