mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-12 16:53:21 +00:00
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";
|
|
};
|
|
}
|