Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{
2 lib,
3 bundlerApp,
4 bundlerUpdateScript,
5}:
6
7bundlerApp {
8 pname = "neocities";
9 gemdir = ./.;
10 exes = [ "neocities" ];
11
12 passthru.updateScript = bundlerUpdateScript "neocities";
13
14 meta = with lib; {
15 description = "CLI and library for interacting with the Neocities API";
16 homepage = "https://github.com/neocities/neocities-ruby";
17 license = licenses.mit;
18 mainProgram = "neocities";
19 maintainers = with maintainers; [ dawoox ];
20 platforms = platforms.unix;
21 };
22}