diff options
author | Justin Bedo <cu@cua0.org> | 2019-08-15 17:19:34 +1000 |
---|---|---|
committer | Justin Bedo <cu@cua0.org> | 2019-08-15 17:19:52 +1000 |
commit | 67c8e952e0ac1548b8c6a33eca9fb46638c5479c (patch) | |
tree | dac774efec7195d798f5645fa148247a2eb824e2 | |
parent | 5858bb15001e76e230c21972abf8e83459c86c02 (diff) |
qsub: fix broken qsub tree
-rw-r--r-- | default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/default.nix b/default.nix index 541d519..94a6d2c 100644 --- a/default.nix +++ b/default.nix @@ -48,7 +48,7 @@ let qsub = attrs: bionix.extend (self: super: with self; rec { qsubDefs = { ppn = 1; mem = 1; walltime = "24:00:00"; tmpDir = "/tmp"; sleepTime = 60; queue = null; qsubFlags = null; qsubPath = "/usr/bin"; } // attrs; qsub = attrs: (callPackage ./lib/qsub.nix {}) (qsubDefs // attrs); - exec = f: x: y: qsub (builtins.intersectAttrs qsubDefs x) (super.exec (builtins.removeAttrs x (builtins.attrNames qsubDefs)) y); + exec = f: x: y: qsub (builtins.intersectAttrs qsubDefs x) (super.exec f (builtins.removeAttrs x (builtins.attrNames qsubDefs)) y); }); def = f: defs: attrs: f (defs // attrs); pipe = let g = fs: with builtins; let h = head fs; t = tail fs; in if t != [] then x: (g t (h x)) else h; in g; |