summary refs log tree commit diff
path: root/pkgs/development/tools/corundum/default.nix
blob: 3497f7099642ac91593819c618de5c28329bba49 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ lib, bundlerApp, bundlerUpdateScript }:

bundlerApp {
  pname = "corundum";
  gemdir = ./.;
  exes = [ "corundum-skel" ];

  passthru.updateScript = bundlerUpdateScript "corundum";

  meta = with lib; {
    description = "Tool and libraries for maintaining Ruby gems.";
    homepage    = "https://github.com/nyarly/corundum";
    license     = licenses.mit;
    maintainers = with maintainers; [ nyarly nicknovitski ];
    platforms   = platforms.unix;
  };
}