···2233stdenv.mkDerivation rec {
44 name = "src-${version}";
55- version = "1.17";
55+ version = "1.18";
6677 src = fetchurl {
88 url = "http://www.catb.org/~esr/src/${name}.tar.gz";
99- sha256 = "17885hpq8nxhqzwl50nrgdk1q9dq4cxjxldgkk8shdf08s5hcqhk";
99+ sha256 = "0n0skhvya8w2az45h2gsafxy8m2mvqas64nrgxifcmrzfv0rf26c";
1010 };
11111212 buildInputs = [ python rcs git makeWrapper ];
···24242525 meta = with stdenv.lib; {
2626 description = "Simple single-file revision control";
2727- homepage = http://www.catb.org/~esr/src/;
2727+ longDescription = ''
2828+ SRC, acronym of Simple Revision Control, is RCS/SCCS reloaded with a
2929+ modern UI, designed to manage single-file solo projects kept more than one
3030+ to a directory. Use it for FAQs, ~/bin directories, config files, and the
3131+ like. Features integer sequential revision numbers, a command set that
3232+ will seem familiar to Subversion/Git/hg users, and no binary blobs
3333+ anywhere.
3434+ '';
3535+ homepage = http://www.catb.org/esr/src/;
2836 license = licenses.bsd3;
2937 platforms = platforms.all;
3030- maintainers = with maintainers; [ calvertvl ];
3838+ maintainers = with maintainers; [ calvertvl AndersonTorres ];
3139 };
3240}