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...
10 lines
248 B
Nix
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 { };
|
|
};
|
|
}
|