Skip to content
Snippets Groups Projects
Commit 4c406b61 authored by Virgile Prevosto's avatar Virgile Prevosto
Browse files

[ci] explicitly add needed packages for nix release target

parent c75b826c
Branches stable/nickel
Tags 0.0.15
No related merge requests found
......@@ -23,6 +23,13 @@ let
then value.overrideScope' ocamlOverlay
else value
) super.ocaml-ng;
release = self.callPackage ./release.nix {
git = pkgs.git;
jq = pkgs.jq;
curl = pkgs.curl;
git-lfs = pkgs.git-lfs;
opam = pkgs.opam;
};
};
with_overlay = pkgs.appendOverlays [ overlay ];
in
......
{
stdenv,
curl,
git,
git-lfs,
jq,
opam
}:
stdenv.mkDerivation rec {
name = "release";
buildInputs = [
curl
git
git-lfs
jq
opam
];
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment