nix-config/overlays/woodpecker-2.0.0-rc.0/default.nix
Bruno BELANYI 63314c9a4a overlays: add 'woodpecker-2.0.0-rc.0'
The point was initially to quickly test the release candidate and wait
for the official v2.

Unfortunately I've encountered some issues trying to get the package
working for the official version. So let's just roll with it for now...
2023-12-14 22:25:14 +01:00

10 lines
248 B
Nix

self: _super:
{
woodpecker-agent = self.callPackage ./agent.nix { };
woodpecker-cli = self.callPackage ./cli.nix { };
woodpecker-server = self.callPackage ./server.nix {
woodpecker-frontend = self.callPackage ./frontend.nix { };
};
}