- don't repeat package name in description - prefer licenses.gpl2Plus over free form "GPLv2+" license name - add platform attribute so that splint will be available in the channel
···14141515 doCheck = true;
16161717- meta = {
1717+ meta = with stdenv.lib; {
1818 homepage = http://splint.org/;
1919- description = "Splint, an annotation-assisted lightweight static analyzer for C";
1919+ description = "Annotation-assisted lightweight static analyzer for C";
20202121 longDescription = ''
2222 Splint is a tool for statically checking C programs for security
···2626 checking than can be done by any standard lint.
2727 '';
28282929- license = "GPLv2+";
2929+ license = licenses.gpl2Plus;
3030+ platforms = platforms.linux;
3031 };
3131-}3232+}