Unverified Commit 1e8bf674 authored by Wolfgang Walther's avatar Wolfgang Walther Committed by GitHub
Browse files

cachix: move to `by-name`, build without docs (#466253)

parents 5690fc8e 31c21ec5
Loading
Loading
Loading
Loading
+13 −0
Original line number Diff line number Diff line
{
  lib,
  haskell,
  haskellPackages,
}:
let
  inherit (haskell.lib) compose;
in
lib.pipe haskellPackages.cachix [
  compose.justStaticExecutables
  (compose.overrideCabal { mainProgram = "cachix"; })
  lib.getBin
]
+0 −6
Original line number Diff line number Diff line
@@ -6910,12 +6910,6 @@ with pkgs;
    c-blosc2
    ;

  cachix = (lib.getBin haskellPackages.cachix).overrideAttrs (old: {
    meta = (old.meta or { }) // {
      mainProgram = old.meta.mainProgram or "cachix";
    };
  });

  niv = lib.getBin (haskell.lib.compose.justStaticExecutables haskellPackages.niv);

  ormolu = lib.getBin (haskell.lib.compose.justStaticExecutables haskellPackages.ormolu);