20 lines
440 B
Nix
20 lines
440 B
Nix
|
{ lib
|
||
|
, bundlerApp
|
||
|
, bundlerUpdateScript
|
||
|
}:
|
||
|
bundlerApp {
|
||
|
pname = "neocities";
|
||
|
gemdir = ./.;
|
||
|
exes = [ "neocities" ];
|
||
|
|
||
|
passthru.updateScript = bundlerUpdateScript "neocities";
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "The Neocities CLI, written in Ruby";
|
||
|
homepage = "https://github.com/neocities/neocities-ruby";
|
||
|
license = licenses.mit;
|
||
|
maintainers = with maintainers; [ infinidoge ];
|
||
|
mainProgram = "neocities";
|
||
|
};
|
||
|
}
|