diff options
Diffstat (limited to 'default.nix')
| -rw-r--r-- | default.nix | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/default.nix b/default.nix index d233d90..c8e99f5 100644 --- a/default.nix +++ b/default.nix @@ -161,11 +161,23 @@ in rec { inherit pname version stdenv forstio adaptive-cpp; inherit kel; }; + + settling_cubes_2d_hlbm_gpu = pkgs.callPackage ./examples/settling_spheres_2d_hlbm_gpu/.nix/derivation.nix { + inherit pname version stdenv forstio adaptive-cpp; + inherit kel; + }; heterogeneous_computing = pkgs.callPackage ./examples/heterogeneous_computing/.nix/derivation.nix { inherit pname version stdenv forstio adaptive-cpp; inherit kel; }; + + settling_particles = pkgs.symlinkJoin { + name = "kel-lbm-settling_particles-${version}"; + paths = [ + examples.settling_cubes_2d_ibm_gpu + ]; + }; }; debug = { @@ -190,6 +202,8 @@ in rec { examples.poiseulle_particles_2d_ibm_gpu ]; }; + + }; default = release.examples; |
