2023-08-23 14:04:34 +00:00
|
|
|
{ lib
|
|
|
|
, bundlerApp
|
|
|
|
, bundlerUpdateScript
|
|
|
|
}:
|
2024-07-31 18:35:16 +00:00
|
|
|
|
2023-08-23 14:04:34 +00:00
|
|
|
bundlerApp {
|
|
|
|
pname = "neocities";
|
|
|
|
gemdir = ./.;
|
|
|
|
exes = [ "neocities" ];
|
|
|
|
|
|
|
|
passthru.updateScript = bundlerUpdateScript "neocities";
|
|
|
|
|
|
|
|
meta = with lib; {
|
2024-07-31 18:35:16 +00:00
|
|
|
description = "CLI and library for interacting with the Neocities API";
|
2023-08-23 14:04:34 +00:00
|
|
|
homepage = "https://github.com/neocities/neocities-ruby";
|
|
|
|
license = licenses.mit;
|
|
|
|
mainProgram = "neocities";
|
2024-07-31 18:35:16 +00:00
|
|
|
maintainers = with maintainers; [ dawoox ];
|
|
|
|
platforms = platforms.unix;
|
2023-08-23 14:04:34 +00:00
|
|
|
};
|
|
|
|
}
|
2024-07-31 18:35:16 +00:00
|
|
|
|