2024-02-29 20:09:43 +00:00
|
|
|
{ lib
|
|
|
|
, bundlerApp
|
|
|
|
, bundlerUpdateScript
|
|
|
|
}:
|
|
|
|
|
|
|
|
bundlerApp {
|
|
|
|
pname = "neocities";
|
|
|
|
gemdir = ./.;
|
|
|
|
exes = [ "neocities" ];
|
|
|
|
|
|
|
|
passthru.updateScript = bundlerUpdateScript "neocities";
|
|
|
|
|
|
|
|
meta = with lib; {
|
2024-06-20 14:57:18 +00:00
|
|
|
description = "Neocities Gem - A CLI and library for using the Neocities web site API";
|
2024-02-29 20:09:43 +00:00
|
|
|
homepage = "https://github.com/neocities/neocities-ruby";
|
|
|
|
license = licenses.mit;
|
|
|
|
mainProgram = "neocities";
|
|
|
|
maintainers = with maintainers; [ dawoox ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|