src: 1.17 -> 1.18

+12 -4
+12 -4
pkgs/applications/version-management/src/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "src-${version}"; 5 - version = "1.17"; 5 + version = "1.18"; 6 6 7 7 src = fetchurl { 8 8 url = "http://www.catb.org/~esr/src/${name}.tar.gz"; 9 - sha256 = "17885hpq8nxhqzwl50nrgdk1q9dq4cxjxldgkk8shdf08s5hcqhk"; 9 + sha256 = "0n0skhvya8w2az45h2gsafxy8m2mvqas64nrgxifcmrzfv0rf26c"; 10 10 }; 11 11 12 12 buildInputs = [ python rcs git makeWrapper ]; ··· 24 24 25 25 meta = with stdenv.lib; { 26 26 description = "Simple single-file revision control"; 27 - homepage = http://www.catb.org/~esr/src/; 27 + longDescription = '' 28 + SRC, acronym of Simple Revision Control, is RCS/SCCS reloaded with a 29 + modern UI, designed to manage single-file solo projects kept more than one 30 + to a directory. Use it for FAQs, ~/bin directories, config files, and the 31 + like. Features integer sequential revision numbers, a command set that 32 + will seem familiar to Subversion/Git/hg users, and no binary blobs 33 + anywhere. 34 + ''; 35 + homepage = http://www.catb.org/esr/src/; 28 36 license = licenses.bsd3; 29 37 platforms = platforms.all; 30 - maintainers = with maintainers; [ calvertvl ]; 38 + maintainers = with maintainers; [ calvertvl AndersonTorres ]; 31 39 }; 32 40 }