lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 15.09-beta 22 lines 574 B view raw
1{ stdenv, fetchurl, makeWrapper, python2, bazaar }: 2 3stdenv.mkDerivation rec { 4 name = "bzr-tools-${version}"; 5 version = "2.6.0"; 6 7 src = fetchurl { 8 url = "http://launchpad.net/bzrtools/stable/${version}/+download/bzrtools-${version}.tar.gz"; 9 sha256 = "0n3zzc6jf5866kfhmrnya1vdr2ja137a45qrzsz8vz6sc6xgn5wb"; 10 }; 11 12 buildInputs = [ makeWrapper python2 ]; 13 14 installPhase = '' 15 ${python2}/bin/python ./setup.py install --prefix=$out 16 ''; 17 18 meta = { 19 description = "Bazaar plugins"; 20 homepage = http://wiki.bazaar.canonical.com/BzrTools; 21 }; 22}