2019-12-30 20:34:49 +00:00
|
|
|
{
|
2024-08-02 15:45:59 +00:00
|
|
|
description = "Channel release management tools";
|
2019-12-30 20:34:49 +00:00
|
|
|
|
2024-06-07 13:05:22 +00:00
|
|
|
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.05-small";
|
2019-12-30 20:34:49 +00:00
|
|
|
|
2023-01-12 17:58:42 +00:00
|
|
|
outputs = { self, nixpkgs }:
|
2019-12-30 20:34:49 +00:00
|
|
|
{
|
2022-09-08 12:21:15 +00:00
|
|
|
overlays.default = final: prev: {
|
2024-08-02 15:45:59 +00:00
|
|
|
mirror-forkos = (final.callPackage ./Cargo.nix { }).rootCrate.build;
|
2019-12-30 20:34:49 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
defaultPackage.x86_64-linux = (import nixpkgs {
|
|
|
|
system = "x86_64-linux";
|
2023-01-12 17:58:42 +00:00
|
|
|
overlays = [ self.overlays.default ];
|
2024-08-02 15:45:59 +00:00
|
|
|
}).mirror-forkos;
|
2019-12-30 20:34:49 +00:00
|
|
|
};
|
|
|
|
}
|