fork
Configure Feed
Select the types of activity you want to include in your feed.
lol
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{ stdenv, fetchurl, perl }:
2
3stdenv.mkDerivation rec {
4 version = "6.0.1";
5 name = "coan-${version}";
6
7 src = fetchurl {
8 url = "mirror://sourceforge/project/coan2/v${version}/${name}.tar.gz";
9 sha256 = "1d041j0nd1hc0562lbj269dydjm4rbzagdgzdnmwdxr98544yw44";
10 };
11
12 nativeBuildInputs = [ perl ];
13
14 enableParallelBuilding = true;
15
16 postInstall = ''
17 mv -v $out/share/man/man1/coan.1.{1,gz}
18 '';
19
20 meta = with stdenv.lib; {
21 description = "The C preprocessor chainsaw";
22 longDescription = ''
23 A software engineering tool for analysing preprocessor-based
24 configurations of C or C++ source code. Its principal use is to simplify
25 a body of source code by eliminating any parts that are redundant with
26 respect to a specified configuration. Dead code removal is an
27 application of this sort.
28 '';
29 homepage = http://coan2.sourceforge.net/;
30 license = licenses.bsd3;
31 platforms = platforms.linux;
32 maintainers = with maintainers; [ nckx ];
33 };
34}