stripe-cli: 1.23.3 -> 1.23.5 (#375724)
[NixPkgs.git] / pkgs / development / tools / cadre / default.nix
blob1694f36647ee40c17276bf4624a37e2ebf5c19b3
2   lib,
3   bundlerApp,
4   bundlerUpdateScript,
5 }:
7 bundlerApp {
8   pname = "cadre";
9   gemdir = ./.;
10   exes = [ "cadre" ];
12   passthru.updateScript = bundlerUpdateScript "cadre";
14   meta = with lib; {
15     description = "Toolkit to add Ruby development - in-editor coverage, libnotify of test runs";
16     homepage = "https://github.com/nyarly/cadre";
17     license = licenses.mit;
18     maintainers = with maintainers; [
19       nyarly
20       nicknovitski
21     ];
22     platforms = platforms.unix;
23   };