Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
argo
argopkgs
Commits
62b236ff
Commit
62b236ff
authored
Nov 05, 2018
by
Valentin Reis
Browse files
[pkgs] Fixed STREAM build.
parent
cd418403
Changes
1
Show whitespace changes
Inline
Side-by-side
pkgs/applications/stream/default.nix
View file @
62b236ff
{
stdenv
,
src
,
fetchgit
,
gfortran
}:
{
stdenv
,
src
,
fetchgit
,
gfortran
,
pkgconfig
}:
stdenv
.
mkDerivation
{
inherit
src
;
name
=
"stream"
;
nativeBuildInputs
=
[
gfortran
];
nativeBuildInputs
=
[
gfortran
pkgconfig
];
buildInputs
=
[
];
buildFlags
=
''CC=gcc FC=gfortran''
;
installPhase
=
''
mkdir -p $out/bin/
cp stream_c.exe $out/bin
...
...
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