lol
0
fork

Configure Feed

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

at 23.11-beta 38 lines 1.2 kB view raw
1{ lib, stdenv, fetchgit, perl }: 2 3stdenv.mkDerivation { 4 pname = "mr"; 5 version = "1.20180726"; 6 7 src = fetchgit { 8 url = "git://myrepos.branchable.com/"; 9 # the repository moved its tags at least once 10 # when updating please continue using the revision hash here 11 rev = "0ad7a17bb455de1fec3b2375c7aac72ab2a22ac4"; 12 sha256 = "0jphw61plm8cgklja6hs639xhdvxgvjwbr6jpvjwpp7hc5gmhms5"; 13 }; 14 15 postPatch = '' 16 patchShebangs . 17 ''; 18 19 buildInputs = [ perl ]; 20 21 makeFlags = [ "PREFIX=$(out)" ]; 22 23 meta = { 24 description = "Multiple Repository management tool"; 25 longDescription = '' 26 mr is a tool to manage all your version control repos. It can 27 checkout, update, or perform other actions on a set of 28 repositories as if they were one combined repository. It 29 supports any combination of subversion, git, cvs, mercurial, 30 bzr, darcs, fossil and veracity repositories, and support for 31 other version control systems can easily be added. 32 ''; 33 homepage = "http://myrepos.branchable.com/"; 34 license = lib.licenses.gpl2Plus; 35 platforms = lib.platforms.unix; 36 maintainers = with lib.maintainers; [ antono henrytill ]; 37 }; 38}