Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
argo
argopkgs
Commits
b572b5eb
Commit
b572b5eb
authored
Feb 18, 2019
by
Valentin Reis
Browse files
application fixes: stream binary name.
parent
7f0457b8
Pipeline
#5446
canceled with stages
in 29 seconds
Changes
2
Pipelines
1
Show whitespace changes
Inline
Side-by-side
pkgs/default.nix
View file @
b572b5eb
...
...
@@ -140,16 +140,23 @@ let
echo "ENTERING ENVIRONMENT: Moreover, sandboxing is disabled, in particular because of:"
echo "ENTERING ENVIRONMENT: /tmp/nrm-* sockets, /etc/argo, /var/run/, /var/lock/ which all need read access. "
echo "ENTERING ENVIRONMENT: until these components are patched to allow for alternative paths, no sandbox use is possible."
source
${
argotk
}
/share/argotk.sh
source
${
argotk
}
/share/argotk.sh
# bash completion
echo ""
''
;
# bash completion
ARGOTK_SHARE
=
"
${
argotk
}
/share"
;
# for argotk to find its versioned data
''
;
# for argotk to find its versioned data
ARGOTK_SHARE
=
"
${
argotk
}
/share"
;
#SUDO = builtins.toPath sudoPath;
};
expe
=
test
.
overrideAttrs
(
old
:{
buildInputs
=
old
.
buildInputs
++
[
amg
lammps
qmcpack
stream
openmc
openmc-data
];
buildInputs
=
old
.
buildInputs
++
[
amg
lammps
qmcpack
(
stream
.
override
{
iterationCount
=
"20000"
;})
openmc
openmc-data
];
OPENMC_CROSS_SECTIONS
=
"
${
openmc-data
}
/cross_sections.xml"
;
OPENMC_PWD
=
"
${
argotk
}
/share/openmc"
;
});
...
...
pkgs/stream/default.nix
View file @
b572b5eb
...
...
@@ -19,7 +19,7 @@ stdenv.mkDerivation {
installPhase
=
''
mkdir -p $out/bin/
cp stream_c.exe $out/bin/stream_c
_
${
iterationCount
}
cp stream_f.exe $out/bin/stream_f
_
${
iterationCount
}
cp stream_c.exe $out/bin/stream_c
cp stream_f.exe $out/bin/stream_f
''
;
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment