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