nixpkgs/pkgs/applications/version-management/tkcvs/default.nix
Lluís Batlle i Rossell a422cec621 Adding tkcvs (which manages also subversion repositories well, they claim)
svn path=/nixpkgs/trunk/; revision=16008
2009-06-19 09:02:48 +00:00

28 lines
563 B
Nix

{stdenv, fetchurl, tcl, tk}:
stdenv.mkDerivation
{
name = "tkcvs-8.2";
src = fetchurl {
url = mirror://sourceforge/tkcvs/tkcvs_8_2.tar.gz;
sha256 = "0cr2f8jd6k2h1n8mvfv6frrfv4kxd7k3mhplk3ghl6hrgklr7ywr";
};
buildInputs = [ tcl tk ];
patchPhase = ''
sed -e 's@exec wish@exec ${tk}/bin/wish@' -i tkcvs/tkcvs.tcl tkdiff/tkdiff
'';
installPhase = ''
./doinstall.tcl $out
'';
meta = {
homepage = http://www.twobarleycorns.net/tkcvs.html;
description = "TCL/TK GUI for cvs and subversion";
license = "GPLv2+";
};
}