mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 11:53:27 +00:00
23 lines
490 B
Nix
23 lines
490 B
Nix
{ lib
|
|
, bundlerApp
|
|
, bundlerUpdateScript
|
|
}:
|
|
|
|
bundlerApp {
|
|
pname = "neocities";
|
|
gemdir = ./.;
|
|
exes = [ "neocities" ];
|
|
|
|
passthru.updateScript = bundlerUpdateScript "neocities";
|
|
|
|
meta = with lib; {
|
|
description = "CLI and library for interacting with the Neocities API";
|
|
homepage = "https://github.com/neocities/neocities-ruby";
|
|
license = licenses.mit;
|
|
mainProgram = "neocities";
|
|
maintainers = with maintainers; [ dawoox ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|
|
|