cachix: move to by-name

This commit is contained in:
Acid Bong
2025-11-29 14:37:06 +02:00
parent acde43339d
commit cb13c5c735
2 changed files with 9 additions and 6 deletions
+9
View File
@@ -0,0 +1,9 @@
{
lib,
haskellPackages,
}:
(lib.getBin haskellPackages.cachix).overrideAttrs (old: {
meta = (old.meta or { }) // {
mainProgram = old.meta.mainProgram or "cachix";
};
})
-6
View File
@@ -6912,12 +6912,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);