tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
scilab: move gfortran to nativeBuildInputs
Markus Kowalewski
4 years ago
35a17a0c
74443bc7
+6
-5
1 changed file
expand all
collapse all
unified
split
pkgs
applications
science
math
scilab
default.nix
+6
-5
pkgs/applications/science/math/scilab/default.nix
···
19
sha256 = "1adk6jqlj7i3gjklvlf1j3il1nb22axnp4rvwl314an62siih0sc";
20
};
21
22
-
buildInputs = [gfortran ncurses]
23
-
++ lib.optionals withGtk [gtk2]
24
-
++ lib.optionals withOCaml [ocaml]
25
-
++ lib.optional withX xlibsWrapper
26
-
;
0
27
28
29
/*
···
19
sha256 = "1adk6jqlj7i3gjklvlf1j3il1nb22axnp4rvwl314an62siih0sc";
20
};
21
22
+
nativeBuildInputs = [ gfortran ];
23
+
24
+
buildInputs = [ ncurses ]
25
+
++ lib.optionals withGtk [ gtk2 ]
26
+
++ lib.optionals withOCaml [ ocaml ]
27
+
++ lib.optional withX xlibsWrapper;
28
29
30
/*