summary refs log blame commit diff
path: root/pkgs/applications/version-management/mercurial/default.nix
blob: 8381196196e5251757dfeb09b5972e930c927f5c (plain) (tree)
1
2
3
4
5
6
7
8
9
                                                        
                                               
 
   
                           


                     
 
                  
                                                                
                                                                                

    
                                                                          
                                  
 
                                                      
 
                              
 
                                                     
      
                                 


                                           
                                                                 

                                                                           
                                                              

                                               
         


                                       
                                                                           

                  

                                             
                                 

                                            
       
 

                                                                        
          
                                                                                       
                                                   
                      

    
{ stdenv, fetchurl, python, makeWrapper, docutils, unzip
, guiSupport ? false, tk ? null, ssl, curses }:

let
  name = "mercurial-2.0.2";
in
stdenv.mkDerivation {
  inherit name;

  src = fetchurl {
    url = "http://mercurial.selenic.com/release/${name}.tar.gz";
    sha256 = "ca8b8fb93f2e3e8c3cdf2f81d87e92592f5f20c5bfcaaeb6a75550d4a69572c9";
  };

  inherit python; # pass it so that the same version can be used in hg2git
  pythonPackages = [ ssl curses ];

  buildInputs = [ python makeWrapper docutils unzip ];

  makeFlags = "PREFIX=$(out)";

  postInstall = (stdenv.lib.optionalString guiSupport
    ''
      mkdir -p $out/etc/mercurial
      cp contrib/hgk $out/bin
      cat >> $out/etc/mercurial/hgrc << EOF
      [extensions]
      hgk=$out/lib/${python.libPrefix}/site-packages/hgext/hgk.py
      EOF
      # setting HG so that hgk can be run itself as well (not only hg view)
      WRAP_TK=" --set TK_LIBRARY \"${tk}/lib/${tk.libPrefix}\"
                --set HG \"$out/bin/hg\"
                --prefix PATH : \"${tk}/bin\" "
    '') +
    ''
      for i in $(cd $out/bin && ls); do
        wrapProgram $out/bin/$i \
          --prefix PYTHONPATH : "$(toPythonPath "$out ${ssl} ${curses}")" \
          $WRAP_TK
      done

      # copy hgweb.cgi to allow use in apache
      mkdir -p $out/share/cgi-bin
      cp -v hgweb.cgi $out/share/cgi-bin
      chmod u+x $out/share/cgi-bin/hgweb.cgi
    '';

  doCheck = false;  # The test suite fails, unfortunately. Not sure why.

  meta = {
    description = "A fast, lightweight SCM system for very large distributed projects";
    homepage = "http://www.selenic.com/mercurial/";
    license = "GPLv2";
  };
}