2012-08-31 12:07:22 +04:00
|
|
|
{ stdenv, fetchurl, perl }:
|
2012-07-07 19:12:18 +04:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2015-06-14 23:28:55 +03:00
|
|
|
version = "1.20150503";
|
2014-11-22 17:30:30 +03:00
|
|
|
name = "mr-${version}";
|
2012-07-07 19:12:18 +04:00
|
|
|
|
2012-08-31 12:07:22 +04:00
|
|
|
src = fetchurl {
|
2014-11-22 17:30:30 +03:00
|
|
|
url = "https://github.com/joeyh/myrepos/archive/${version}.tar.gz";
|
2015-06-14 23:28:55 +03:00
|
|
|
sha256 = "12cf8kmn13446rszmah5wws5p2k2gjp6y4505sy1r14qnahf4qbf";
|
2012-07-07 19:12:18 +04:00
|
|
|
};
|
|
|
|
|
2014-11-22 17:30:30 +03:00
|
|
|
buildInputs = [ perl ];
|
2012-07-07 19:12:18 +04:00
|
|
|
|
2014-11-22 17:30:30 +03:00
|
|
|
makeFlags = "PREFIX=$(out)";
|
2014-02-06 04:53:55 +04:00
|
|
|
|
2012-07-07 19:12:18 +04:00
|
|
|
meta = {
|
|
|
|
description = "Multiple Repository management tool";
|
2014-11-22 17:30:30 +03: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 19:12:18 +04:00
|
|
|
'';
|
2014-11-22 17:30:30 +03:00
|
|
|
homepage = http://myrepos.branchable.com/;
|
2014-06-19 08:19:00 +04:00
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
2012-07-07 19:12:18 +04:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2014-11-22 17:30:30 +03:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ antono henrytill ];
|
2012-07-07 19:12:18 +04:00
|
|
|
};
|
|
|
|
}
|