tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
hci: Fix cross eval
Robert Hensing
3 years ago
2cd55b31
34c5293a
+2
-2
1 changed file
expand all
collapse all
unified
split
pkgs
development
tools
continuous-integration
hci
default.nix
+2
-2
pkgs/development/tools/continuous-integration/hci/default.nix
reviewed
···
1
1
{ haskell, haskellPackages, lib, makeWrapper, runc, stdenv }:
2
2
let
3
3
-
inherit (haskell.lib.compose) overrideCabal addBuildDepends justStaticExecutables;
3
3
+
inherit (haskell.lib.compose) overrideCabal addBuildTools justStaticExecutables;
4
4
inherit (lib) makeBinPath;
5
5
bundledBins = lib.optional stdenv.isLinux runc;
6
6
···
15
15
makeWrapper $out/libexec/hci $out/bin/hci --prefix PATH : ${lib.escapeShellArg (makeBinPath bundledBins)}
16
16
'';
17
17
})
18
18
-
(addBuildDepends [ makeWrapper ] (justStaticExecutables haskellPackages.hercules-ci-cli));
18
18
+
(addBuildTools [ makeWrapper ] (justStaticExecutables haskellPackages.hercules-ci-cli));
19
19
in pkg // {
20
20
meta = pkg.meta // {
21
21
position = toString ./default.nix + ":1";