mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 22:36:23 +01:00
41 lines
1.4 KiB
Nix
41 lines
1.4 KiB
Nix
|
{ fetchFromGitHub, lib, python2Packages, meld, subversion, gvfs, xdg_utils }:
|
||
|
python2Packages.buildPythonPackage rec {
|
||
|
name = "rabbitvcs-${version}";
|
||
|
version = "0.16";
|
||
|
namePrefix = "";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "rabbitvcs";
|
||
|
repo = "rabbitvcs";
|
||
|
rev = "v${version}";
|
||
|
sha256 = "0964pdylrx4n9c9l8ncwv4q1p63y4hadb5v4pgvm0m2fah2jlkly";
|
||
|
};
|
||
|
|
||
|
pythonPath = with python2Packages; [ configobj dbus pygobject pygtk simplejson pysvn dulwich tkinter gvfs xdg_utils ];
|
||
|
|
||
|
prePatch = ''
|
||
|
sed -ie 's|if sys\.argv\[1\] == "install":|if False:|' ./setup.py
|
||
|
sed -ie "s|PREFIX = sys.prefix|PREFIX = \"$out\"|" ./setup.py
|
||
|
sed -ie 's|/usr/bin/meld|${meld}/bin/meld|' ./rabbitvcs/util/configspec/configspec.ini
|
||
|
sed -ie 's|/usr/bin/svnadmin|${subversion}/bin/svnadmin|' ./rabbitvcs/ui/create.py
|
||
|
sed -ie "s|/usr/share/doc|$out/share/doc|" ./rabbitvcs/ui/about.py
|
||
|
sed -ie "s|gnome-open|xdg-open|" ./rabbitvcs/util/helper.py
|
||
|
'';
|
||
|
|
||
|
outputs = [ "out" "cli" ];
|
||
|
|
||
|
postInstall = ''
|
||
|
mkdir -p $cli/bin
|
||
|
cp clients/cli/rabbitvcs $cli/bin
|
||
|
wrapPythonProgramsIn $cli "$out $pythonPath"
|
||
|
'';
|
||
|
|
||
|
meta = {
|
||
|
description = "Graphical tools for working with version control systems";
|
||
|
homepage = http://rabbitvcs.org/;
|
||
|
license = lib.licenses.gpl2Plus;
|
||
|
platforms = lib.platforms.linux;
|
||
|
maintainers = [ lib.maintainers.mathnerd314 ];
|
||
|
};
|
||
|
}
|