summary refs log blame commit diff
path: root/pkgs/development/libraries/quazip/default.nix
blob: ae858738ec1665eef2f3c0e1025192618d01b37b (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                                          

                         
                        


                                                       
                                                                    

    
                             
 
                                
                                

          

                                                                     
                                              
                                           

    
{ fetchurl, stdenv, zlib, qtbase, qmake }:

stdenv.mkDerivation rec {
  name = "quazip-0.7.3";

  src = fetchurl {
    url = "mirror://sourceforge/quazip/${name}.tar.gz";
    sha256 = "1db9w8ax1ki0p67a47h4cnbwfgi2di4y3k9nc3a610kffiag7m1a";
  };

  preConfigure = "cd quazip";

  buildInputs = [ zlib qtbase ];
  nativeBuildInputs = [ qmake ];

  meta = {
    description = "Provides access to ZIP archives from Qt programs";
    license = stdenv.lib.licenses.gpl2Plus;
    homepage = http://quazip.sourceforge.net/;
    platforms = stdenv.lib.platforms.linux;
  };
}