packages/hercules-ci-agent: apply cachix jailbreak
This commit is contained in:
parent
0b45bba292
commit
17b0cd0ec2
1 changed files with 14 additions and 1 deletions
|
@ -39,9 +39,22 @@
|
||||||
nix = patchedNix;
|
nix = patchedNix;
|
||||||
inherit hercules-ci-cnix-store;
|
inherit hercules-ci-cnix-store;
|
||||||
});
|
});
|
||||||
cachix = pkgs.haskellPackages.cachix.override (lib.const {
|
cachix = (pkgs.haskellPackages.cachix.override (lib.const {
|
||||||
nix = patchedNix;
|
nix = patchedNix;
|
||||||
inherit hercules-ci-cnix-store;
|
inherit hercules-ci-cnix-store;
|
||||||
|
})).overrideAttrs (o: {
|
||||||
|
postPatch = ''
|
||||||
|
${o.postPatch or ""}
|
||||||
|
# jailbreak pkgconfig deps
|
||||||
|
cp cachix.cabal cachix.cabal.backup
|
||||||
|
sed -i cachix.cabal -e 's/\(nix-[a-z]*\) *(==[0-9.]* *|| *>[0-9.]*) *&& *<[0-9.]*/\1/g'
|
||||||
|
sed -i cachix.cabal -e 's/pkgconfig-depends:.*/pkgconfig-depends: nix-main, nix-store/'
|
||||||
|
echo
|
||||||
|
echo Applied:
|
||||||
|
diff -U5 cachix.cabal.backup cachix.cabal ||:
|
||||||
|
echo
|
||||||
|
rm cachix.cabal.backup
|
||||||
|
'';
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
in (original.override patchDeps).overrideAttrs forcePatchNix;
|
in (original.override patchDeps).overrideAttrs forcePatchNix;
|
||||||
|
|
Loading…
Reference in a new issue