2012-08-31 01:07:22 -07:00
|
|
|
{ stdenv, fetchurl, perl }:
|
2012-07-07 08:12:18 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2014-11-22 06:30:30 -08:00
|
|
|
version = "1.20141024";
|
|
|
|
name = "mr-${version}";
|
2012-07-07 08:12:18 -07:00
|
|
|
|
2012-08-31 01:07:22 -07:00
|
|
|
src = fetchurl {
|
2014-11-22 06:30:30 -08:00
|
|
|
url = "https://github.com/joeyh/myrepos/archive/${version}.tar.gz";
|
|
|
|
sha256 = "7b68183476867d15d6f111fc9678335b94824dcfa09f07c761a72d64cdf5ad4a";
|
2012-07-07 08:12:18 -07:00
|
|
|
};
|
|
|
|
|
2014-11-22 06:30:30 -08:00
|
|
|
buildInputs = [ perl ];
|
2012-07-07 08:12:18 -07:00
|
|
|
|
2014-11-22 06:30:30 -08:00
|
|
|
makeFlags = "PREFIX=$(out)";
|
2014-02-05 16:53:55 -08:00
|
|
|
|
2012-07-07 08:12:18 -07:00
|
|
|
meta = {
|
|
|
|
description = "Multiple Repository management tool";
|
2014-11-22 06:30:30 -08:00
|
|
|
longDescription = ''
|
|
|
|
mr is a tool to manage all your version control repos. It can
|
|
|
|
checkout, update, or perform other actions on a set of
|
|
|
|
repositories as if they were one combined repository. It
|
|
|
|
supports any combination of subversion, git, cvs, mercurial,
|
|
|
|
bzr, darcs, fossil and veracity repositories, and support for
|
|
|
|
other version control systems can easily be added.
|
2012-07-07 08:12:18 -07:00
|
|
|
'';
|
2014-11-22 06:30:30 -08:00
|
|
|
homepage = http://myrepos.branchable.com/;
|
2014-06-18 21:19:00 -07:00
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
2012-07-07 08:12:18 -07:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2014-11-22 06:30:30 -08:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ antono henrytill ];
|
2012-07-07 08:12:18 -07:00
|
|
|
};
|
|
|
|
}
|