summaryrefslogtreecommitdiff
path: root/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'default.nix')
-rw-r--r--default.nix26
1 files changed, 19 insertions, 7 deletions
diff --git a/default.nix b/default.nix
index f2fb618..5f7dc1b 100644
--- a/default.nix
+++ b/default.nix
@@ -4,13 +4,6 @@
}:
let
- forstio = (import ((builtins.fetchGit {
- url = "git@git.keldu.de:forstio/forstio";
- ref = "dev";
- }).outPath + "/default.nix"){
- inherit stdenv;
- inherit clang-tools;
- }).forstio;
adaptive-cpp = pkgs.callPackage .nix/adaptive-cpp.nix {
inherit stdenv;
@@ -18,6 +11,15 @@ let
lld = pkgs.lld_19;
};
+ forstio = (import ((builtins.fetchTarball {
+ url = "https://git.keldu.de/forstio-forstio/snapshot/dev.tar.gz";
+ sha256 = "sha256:1mbak3ksppkij0325p6gz8mibbss0gfj4w85fs4f1jkz8wpdbkgq";
+ }) + "/default.nix"){
+ inherit stdenv;
+ inherit clang-tools;
+ inherit adaptive-cpp;
+ }).forstio;
+
pname = "kel-lbm";
version = "0.0.2";
in rec {
@@ -52,6 +54,16 @@ in rec {
inherit pname version stdenv forstio adaptive-cpp;
kel-lbm = lbm;
};
+
+ poiseulle_2d = pkgs.callPackage ./examples/poiseulle_3d/.nix/derivation.nix {
+ inherit pname version stdenv forstio;
+ kel-lbm = lbm;
+ };
+
+ poiseulle_3d = pkgs.callPackage ./examples/poiseulle_3d/.nix/derivation.nix {
+ inherit pname version stdenv forstio adaptive-cpp;
+ kel-lbm = lbm;
+ };
};
debug = {