bcb2f287e1
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
22 lines
506 B
Nix
22 lines
506 B
Nix
{ lib
|
|
, bundlerApp
|
|
, bundlerUpdateScript
|
|
}:
|
|
|
|
bundlerApp {
|
|
pname = "neocities";
|
|
gemdir = ./.;
|
|
exes = [ "neocities" ];
|
|
|
|
passthru.updateScript = bundlerUpdateScript "neocities";
|
|
|
|
meta = with lib; {
|
|
description = "Neocities Gem - A CLI and library for using the Neocities web site API";
|
|
homepage = "https://github.com/neocities/neocities-ruby";
|
|
license = licenses.mit;
|
|
mainProgram = "neocities";
|
|
maintainers = with maintainers; [ dawoox ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|
|
|