nixpkgs/pkgs/by-name/ne/neocities/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
490 B
Nix
Raw Normal View History

2023-08-23 14:04:34 +00:00
{ lib
, bundlerApp
, bundlerUpdateScript
}:
2023-08-23 14:04:34 +00:00
bundlerApp {
pname = "neocities";
gemdir = ./.;
exes = [ "neocities" ];
passthru.updateScript = bundlerUpdateScript "neocities";
meta = with lib; {
description = "CLI and library for interacting with the Neocities API";
2023-08-23 14:04:34 +00:00
homepage = "https://github.com/neocities/neocities-ruby";
license = licenses.mit;
mainProgram = "neocities";
maintainers = with maintainers; [ dawoox ];
platforms = platforms.unix;
2023-08-23 14:04:34 +00:00
};
}