summary refs log blame commit diff
path: root/pkgs/tools/package-management/fpm/default.nix
blob: 4eab1556d9544b9ef1a1a5864a493783df44545b (plain) (tree)
1
2
3
4
5
6
7
8
9
                                         
 
            

                
                   
 

                                                    

                                                                            
                                                        
                               
                                                             


                                 
{ lib, bundlerApp, bundlerUpdateScript }:

bundlerApp {
  pname = "fpm";
  gemdir = ./.;
  exes = [ "fpm" ];

  passthru.updateScript = bundlerUpdateScript "fpm";

  meta = with lib; {
    description = "Tool to build packages for multiple platforms with ease";
    homepage    = "https://github.com/jordansissel/fpm";
    license     = licenses.mit;
    maintainers = with maintainers; [ manveru nicknovitski ];
    platforms   = platforms.unix;
  };
}