Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
A
argopkgs
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
argo
argopkgs
Commits
e91b35c8
Commit
e91b35c8
authored
Nov 05, 2018
by
Valentin Reis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Fix] Updated the kapack pinning.
parent
417ba797
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
9 deletions
+10
-9
kapack.json
kapack.json
+4
-4
pin.nix
pin.nix
+3
-2
pkgs/default.nix
pkgs/default.nix
+3
-3
No files found.
kapack.json
View file @
e91b35c8
{
"url"
:
"https://github.com/
oar-team
/kapack.git"
,
"rev"
:
"
d173f5042764dfe5755b9d705ba84523d184e31e
"
,
"date"
:
"2018-1
0-25T14:57:27+02
:00"
,
"sha256"
:
"1
rpnfhwk6jyhampqklcy4n8688aq8yz04k96ifn8n8fml6s5bzkb
"
,
"url"
:
"https://github.com/
freuk
/kapack.git"
,
"rev"
:
"
8264261535d26b371de1fb05ed89bee895b2bc6a
"
,
"date"
:
"2018-1
1-05T10:33:52-06
:00"
,
"sha256"
:
"1
6g7p6pq4xs1wsycanmi88290g0p5q18jk6kh6134gchkk9l9cbf
"
,
"fetchSubmodules"
:
true
}
pin.nix
View file @
e91b35c8
{
hostPkgs
?
import
<
nixpkgs
>
{},
jsonpath
jsonpath
,
depset
?
{}
}:
let
pinnedVersion
=
hostPkgs
.
lib
.
importJSON
jsonpath
;
pinnedPkgs
=
hostPkgs
.
fetchgit
{
inherit
(
pinnedVersion
)
url
rev
sha256
;
};
in
import
pinnedPkgs
{}
in
import
pinnedPkgs
depset
pkgs/default.nix
View file @
e91b35c8
{
host
Nixpkgs
?
<
nixpkgs
>
,
kapack
?
import
../pin.nix
{
hostPkgs
=
import
hostNixpkgs
{};
jsonpath
=
../kapack.json
;
},
pkgs
?
import
../pin.nix
{
hostPkgs
=
import
hostNixpkgs
{};
jsonpath
=
../nixpkgs-18.03.json
;
},
host
Pkgs
?
import
<
nixpkgs
>
{}
,
kapack
?
import
../pin.nix
{
inherit
hostPkgs
;
jsonpath
=
../kapack.json
;
depset
=
{
inherit
hostPkgs
;};
},
pkgs
?
import
../pin.nix
{
inherit
hostPkgs
;
jsonpath
=
../nixpkgs-18.03.json
;
},
}:
let
gitpin
=
f
:
pkgs
.
fetchgit
{
inherit
(
pkgs
.
lib
.
importJSON
f
)
url
sha256
rev
fetchSubmodules
;};
...
...
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