353d450867
svn path=/nixpkgs/branches/modular-python/; revision=26594
28 lines
750 B
Nix
28 lines
750 B
Nix
{ stdenv, fetchurl, pythonPackages }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "2.3";
|
|
release = ".1";
|
|
name = "bazaar-${version}${release}";
|
|
|
|
src = fetchurl {
|
|
url = "http://launchpad.net/bzr/${version}/${version}${release}/+download/bzr-${version}${release}.tar.gz";
|
|
sha256 = "07kx41w4gqv68bcykdflsg68wvpmcyqknzyb4vr1zqlf27hahp53";
|
|
};
|
|
|
|
buildInputs = [ pythonPackages.python pythonPackages.wrapPython ];
|
|
|
|
# Readline support is needed by bzrtools.
|
|
pythonPath = [ pythonPackages.ssl pythonPackages.readline ];
|
|
|
|
installPhase = ''
|
|
python setup.py install --prefix=$out
|
|
wrapPythonPrograms
|
|
'';
|
|
|
|
meta = {
|
|
homepage = http://bazaar-vcs.org/;
|
|
description = "A distributed version control system that Just Works";
|
|
};
|
|
}
|