Commit 166f15a6 authored by Thibault Lemaire's avatar Thibault Lemaire
Browse files

Add vendored bc-decaf as input

No related merge requests found
Showing with 26 additions and 1 deletion
......@@ -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"
}
}
......
......@@ -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;
});
};
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment