Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
BC
public
bctoolbox
Commits
166f15a6
Commit
166f15a6
authored
2 years ago
by
Thibault Lemaire
Browse files
Options
Download
Patches
Plain Diff
Add vendored bc-decaf as input
parent
0bc11825
feature/nix-flake
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
flake.lock
+17
-0
flake.lock
flake.nix
+9
-1
flake.nix
with
26 additions
and
1 deletion
flake.lock
+
17
−
0
View file @
166f15a6
...
...
@@ -21,6 +21,22 @@
"url": "https://gitlab.linphone.org/BC/public/bcunit"
}
},
"decaf-source": {
"flake": false,
"locked": {
"lastModified": 1658325219,
"narHash": "sha256-QFOAgLiPbG2ZdwKoCOrVD5/sPq9IH4rtAWnnk/rZWcs=",
"ref": "refs/heads/bc",
"rev": "876ddb4d465c94f97beba1be450e8538d866cc5d",
"revCount": 561,
"type": "git",
"url": "https://gitlab.linphone.org/BC/public/external/decaf"
},
"original": {
"type": "git",
"url": "https://gitlab.linphone.org/BC/public/external/decaf"
}
},
"nixpkgs": {
"locked": {
"lastModified": 1662096612,
...
...
@@ -38,6 +54,7 @@
"root": {
"inputs": {
"bcunit": "bcunit",
"decaf-source": "decaf-source",
"nixpkgs": "nixpkgs"
}
}
...
...
This diff is collapsed.
Click to expand it.
flake.nix
+
9
−
1
View file @
166f15a6
...
...
@@ -6,9 +6,13 @@
url
=
git+https://gitlab.linphone.org/BC/public/bcunit
?
ref
=
feature/nix-flake
;
inputs
.
nixpkgs
.
follows
=
"nixpkgs"
;
};
decaf-source
=
{
url
=
git+https://gitlab.linphone.org/BC/public/external/decaf
;
flake
=
false
;
};
};
outputs
=
{
self
,
nixpkgs
,
bcunit
,
...
}:
{
outputs
=
{
self
,
nixpkgs
,
bcunit
,
decaf-source
,
...
}:
{
overlays
.
default
=
final
:
prev
:
{
...
...
@@ -16,6 +20,10 @@
version
=
"dev"
;
src
=
./.
;
});
bc-decaf
=
prev
.
bc-decaf
.
overrideAttrs
(
attrs
:
{
version
=
"dev"
;
src
=
decaf-source
;
});
};
...
...
This diff is collapsed.
Click to expand it.
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!
Save comment
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Topics
Snippets