···23stdenv.mkDerivation rec {
4 name = "src-${version}";
5+ version = "1.18";
67 src = fetchurl {
8 url = "http://www.catb.org/~esr/src/${name}.tar.gz";
9+ sha256 = "0n0skhvya8w2az45h2gsafxy8m2mvqas64nrgxifcmrzfv0rf26c";
10 };
1112 buildInputs = [ python rcs git makeWrapper ];
···2425 meta = with stdenv.lib; {
26 description = "Simple single-file revision control";
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/;
36 license = licenses.bsd3;
37 platforms = platforms.all;
38+ maintainers = with maintainers; [ calvertvl AndersonTorres ];
39 };
40}