nix-pkgset icon indicating copy to clipboard operation
nix-pkgset copied to clipboard

Nix package set library

Results 5 nix-pkgset issues
Sort by recently updated
recently updated
newest added

Currently we have to do some modifications to `makeScopeWithSplicing'` from `nixpkgs` to recursively apply `pkgs` to package sets. I wonder if there's a way of avoiding that. Possibly with `overrideScope`...

Currently when you merge package sets using `mergePackageSets`, all packages get re-spliced. This is especially bad if you merge with the entire `nixpkgs` package set. We could generate a `__splicedPackages`...

I've been trying out nix-pkgset to add cross support to a flake that previously exposed a bare attrset of packages. I think I have it working but am unsure about...

In my package set, I have two packages `A` and `B`, where `B` should depend `pkgsStatic.A`. It there a way to archive this with nix-pkgset? I'm using flakes.