nvf/flake/legacyPackages.nix

25 lines
628 B
Nix
Raw Normal View History

2023-02-10 19:40:13 +02:00
{inputs, ...}: {
perSystem = {
system,
inputs',
...
}: {
legacyPackages = import inputs.nixpkgs {
inherit system;
overlays = [
inputs.self.overlays.default
2025-01-21 13:35:01 +08:00
(final: _: {
# Build nil from source to get most recent
# features as they are added.
2023-02-10 19:40:13 +02:00
nil = inputs'.nil.packages.default;
2025-01-21 13:35:01 +08:00
blink-cmp = final.callPackage ./legacyPackages/blink-cmp.nix {
src = inputs.plugin-blink-cmp;
version = inputs.plugin-blink-cmp.shortRev or inputs.plugin-blink-cmp.shortDirtyRev or "dirty";
};
2023-02-10 19:40:13 +02:00
})
];
};
};
}