c7cb07f092
GitOrigin-RevId: 1536926ef5621b09bba54035ae2bb6d806d72ac8
22 lines
511 B
Nix
22 lines
511 B
Nix
{ lib
|
|
, bundlerApp
|
|
, bundlerUpdateScript
|
|
}:
|
|
|
|
bundlerApp {
|
|
pname = "neocities";
|
|
gemdir = ./.;
|
|
exes = [ "neocities" ];
|
|
|
|
passthru.updateScript = bundlerUpdateScript "neocities";
|
|
|
|
meta = with lib; {
|
|
description = "The 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;
|
|
};
|
|
}
|
|
|