biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / corundum / default.nix
blob62d00cbc3768be9903be2b6361ab95675416ee81
1 { lib, bundlerApp, bundlerUpdateScript }:
3 bundlerApp {
4   pname = "corundum";
5   gemdir = ./.;
6   exes = [ "corundum-skel" ];
8   passthru.updateScript = bundlerUpdateScript "corundum";
10   meta = with lib; {
11     description = "Tool and libraries for maintaining Ruby gems";
12     homepage    = "https://github.com/nyarly/corundum";
13     license     = licenses.mit;
14     maintainers = with maintainers; [ nyarly nicknovitski ];
15     platforms   = platforms.unix;
16   };