channel-scripts/flake.nix
Raito Bezarius a4443d8eac chore: bump locks
Signed-off-by: Raito Bezarius <masterancpp@gmail.com>
2024-12-14 18:29:22 +01:00

17 lines
454 B
Nix

{
description = "Channel release management tools";
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable-small";
outputs = { self, nixpkgs }:
{
overlays.default = final: prev: {
mirror-forkos = (final.callPackage ./Cargo.nix { }).rootCrate.build;
};
defaultPackage.x86_64-linux = (import nixpkgs {
system = "x86_64-linux";
overlays = [ self.overlays.default ];
}).mirror-forkos;
};
}