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
96aaab2d
Commit
96aaab2d
authored
Mar 06, 2019
by
Valentin Reis
Browse files
adds Excit.
parent
a7fdd410
Pipeline
#5844
passed with stages
in 3 minutes and 59 seconds
Changes
4
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
pkgs/aml/default.nix
View file @
96aaab2d
{
stdenv
,
src
,
autoreconfHook
,
fetchgit
,
pkgconfig
,
mpich2
}:
{
stdenv
,
src
,
autoreconfHook
,
fetchgit
,
pkgconfig
,
mpich2
,
excit
,
numabench
}:
stdenv
.
mkDerivation
{
inherit
src
;
name
=
"aml"
;
...
...
pkgs/default.nix
View file @
96aaab2d
...
...
@@ -13,6 +13,7 @@
,
#source overrides: core nrm components
aml-src
?
fetched
aml/pin.json
,
numabench-src
?
fetched
numabench/pin.json
,
excit-src
?
fetched
excit/pin.json
,
libnrm-src
?
fetched
libnrm/pin.json
,
nrm-src
?
fetched
nrm/pin.json
,
containers-src
?
fetched
containers/pin.json
...
...
@@ -43,8 +44,9 @@ let
# library of nix expressions
argolib
=
import
../lib/utils.nix
;
# Argo components (source overridabel via argument)
aml
=
callPackage
./aml
{
src
=
aml-src
;};
aml
=
callPackage
./aml
{
src
=
aml-src
;
inherit
excit
;
inherit
numabench
;
};
numabench
=
callPackage
./numabench
{
src
=
numabench-src
;
hwloc
=
hwloc2
;};
excit
=
callPackage
./excit
{
src
=
excit-src
;};
nrm
=
callPackage
./nrm
{
src
=
nrm-src
;};
containers
=
callPackage
./containers
{
src
=
containers-src
;};
libnrm
=
callPackage
./libnrm
{
src
=
libnrm-src
;};
...
...
pkgs/excit/default.nix
0 → 100644
View file @
96aaab2d
{
stdenv
,
src
,
autoreconfHook
,
fetchgit
,
pkgconfig
,
mpich2
}:
stdenv
.
mkDerivation
{
inherit
src
;
name
=
"excit"
;
nativeBuildInputs
=
[
autoreconfHook
pkgconfig
];
buildInputs
=
[
];
}
pkgs/excit/pin.json
0 → 100644
View file @
96aaab2d
{
"fetch"
:
{
"args"
:
{
"fetchSubmodules"
:
false
,
"rev"
:
"8bf1ee7c72761752009885b071c26e043e46fbcb"
,
"sha256"
:
"1gm1r3m23mnvbd1ncn08wxmc703kjdr5sydbayywvi27j34gql2d"
,
"url"
:
"https://xgitlab.cels.anl.gov/argo/excit.git"
},
"fn"
:
"fetchgit"
},
"rev"
:
"refs/heads/master"
,
"type"
:
"fetchgit"
,
"url"
:
"https://xgitlab.cels.anl.gov/argo/excit.git"
}
\ No newline at end of file
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