32 lines
1.0 KiB
Nix
32 lines
1.0 KiB
Nix
{ stdenv, fetchurl, perl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "1.20160123";
|
|
name = "mr-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/joeyh/myrepos/archive/${version}.tar.gz";
|
|
sha256 = "1723cg5haplz2w9dwdzp6ds1ip33cx3awmj4wnb0h4yq171v5lqk";
|
|
};
|
|
|
|
buildInputs = [ perl ];
|
|
|
|
makeFlags = "PREFIX=$(out)";
|
|
|
|
meta = {
|
|
description = "Multiple Repository management tool";
|
|
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.
|
|
'';
|
|
homepage = http://myrepos.branchable.com/;
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
|
platforms = stdenv.lib.platforms.unix;
|
|
maintainers = with stdenv.lib.maintainers; [ antono henrytill ];
|
|
};
|
|
}
|