3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #31531 from danbst/mercurial-licence-fix

tortoisehg: fix license dialog
This commit is contained in:
Renaud 2017-11-14 20:14:52 +01:00 committed by GitHub
commit 6cfb55fdd8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -18,6 +18,8 @@ python2Packages.buildPythonApplication rec {
buildPhase = "";
installPhase = ''
${python2Packages.python.executable} setup.py install --prefix=$out
mkdir -p $out/share/doc/tortoisehg
cp COPYING.txt $out/share/doc/tortoisehg/Copying.txt.gz
ln -s $out/bin/thg $out/bin/tortoisehg #convenient alias
'';