mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-26 07:34:11 +00:00
18 lines
439 B
Nix
18 lines
439 B
Nix
{ lib, bundlerApp, bundlerUpdateScript }:
|
|
|
|
bundlerApp {
|
|
pname = "lolcat";
|
|
gemdir = ./.;
|
|
exes = [ "lolcat" ];
|
|
|
|
passthru.updateScript = bundlerUpdateScript "lolcat";
|
|
|
|
meta = with lib; {
|
|
description = "A rainbow version of cat";
|
|
homepage = "https://github.com/busyloop/lolcat";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ StillerHarpo manveru nicknovitski ];
|
|
mainProgram = "lolcat";
|
|
};
|
|
}
|