summary refs log blame commit diff
path: root/pkgs/development/tools/corundum/default.nix
blob: 62d00cbc3768be9903be2b6361ab95675416ee81 (plain) (tree)
1
2
3
4
5
6
7
8
9
                                         
 

                     
               

                             

                                                         
                    
                                                                 
                                                       
                               
                                                            


                                 
{ 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;
  };
}