2020-12-06 13:09:02 +01:00
|
|
|
{
|
2021-01-03 13:24:04 +01:00
|
|
|
description = "Privately maintained packages";
|
|
|
|
|
|
|
|
inputs.nixpkgs = {
|
|
|
|
type = "indirect";
|
|
|
|
id = "nixpkgs";
|
|
|
|
};
|
|
|
|
|
|
|
|
outputs = { nixpkgs, ... }: rec {
|
2020-12-06 13:09:02 +01:00
|
|
|
overlay = import ./default.nix;
|
2021-01-03 13:24:04 +01:00
|
|
|
|
|
|
|
legacyPackages."x86_64-linux" = import nixpkgs { system = "x86_64-linux"; overlays = [ overlay ]; };
|
2020-12-06 13:09:02 +01:00
|
|
|
};
|
|
|
|
}
|