- 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
···1415 doCheck = true;
1617- meta = {
18 homepage = http://splint.org/;
19- description = "Splint, an annotation-assisted lightweight static analyzer for C";
2021 longDescription = ''
22 Splint is a tool for statically checking C programs for security
···26 checking than can be done by any standard lint.
27 '';
2829- license = "GPLv2+";
030 };
31-}
···1415 doCheck = true;
1617+ meta = with stdenv.lib; {
18 homepage = http://splint.org/;
19+ description = "Annotation-assisted lightweight static analyzer for C";
2021 longDescription = ''
22 Splint is a tool for statically checking C programs for security
···26 checking than can be done by any standard lint.
27 '';
2829+ license = licenses.gpl2Plus;
30+ platforms = platforms.linux;
31 };
32+}