Skip to content
GitLab
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
fc6b282e
Commit
fc6b282e
authored
Oct 31, 2018
by
Valentin Reis
Browse files
Removed "utils" in default package file.
parent
57337f2c
Changes
1
Hide whitespace changes
Inline
Side-by-side
pkgs/default.nix
View file @
fc6b282e
...
...
@@ -14,12 +14,6 @@ let
compiler_path
=
"/opt/intel/compilers_and_libraries_2017.1.132/linux/"
;
callPackage
=
pkgs
.
lib
.
callPackageWith
pkgs
;
pythonPackages
=
pkgs
.
python27Packages
;
utils
=
with
pkgs
.
lib
;
rec
{
makeSearchPath
=
subDir
:
packages
:
concatStringsSep
":"
(
map
(
path
:
path
+
"/"
+
subDir
)
packages
);
makeSearchPathOutput
=
output
:
subDir
:
pkgs
:
makeSearchPath
subDir
(
map
(
pkg
:
"
${
pkg
}
/output"
)
pkgs
);
makeLibraryPath
=
makeSearchPathOutput
"lib"
"lib"
;
};
in
rec
{
#NRM components
libnrm
=
callPackage
./libnrm
{};
...
...
@@ -45,8 +39,8 @@ in rec {
#Intel compilers
intel
=
with
pkgs
;
rec
{
icc
=
callPackage
intel/icc
{
inherit
compiler_path
utils
;
};
mkl
=
callPackage
intel/mkl
{
inherit
compiler_path
utils
;
};
icc
=
callPackage
intel/icc
{
inherit
compiler_path
;
};
mkl
=
callPackage
intel/mkl
{
inherit
compiler_path
;
};
WrappedICC
=
(
import
../patches/cc-wrapper
{
inherit
stdenv
binutils
coreutils
;
libc
=
glibc
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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