2009-12-12 01:47:14 +01:00
|
|
|
{ fetchurl, stdenv, ocaml, perl, python, ncurses, makeWrapper }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2010-03-12 19:44:47 +01:00
|
|
|
name = "coccinelle-0.2.2";
|
2009-12-12 01:47:14 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://coccinelle.lip6.fr/distrib/${name}.tgz";
|
2010-03-12 19:44:47 +01:00
|
|
|
sha256 = "1rnhxlqwcps67nyn61xj8mf6wdja29q8m16r4jwdwxvfpnsdhwfy";
|
2009-12-12 01:47:14 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ ocaml perl python ncurses makeWrapper ];
|
|
|
|
|
|
|
|
preConfigure =
|
|
|
|
'' sed -i "configure" -e's|/usr/bin/perl|${perl}/bin/perl|g'
|
|
|
|
sed -i "globals/config.ml.in" \
|
|
|
|
-e"s|/usr/local/share|$out/share|g"
|
|
|
|
'';
|
|
|
|
|
|
|
|
buildPhase = "make depend && make all";
|
|
|
|
|
2010-01-13 09:51:22 +01:00
|
|
|
# Note: The tests want $out/share/coccinelle/standard.h so they must be run
|
|
|
|
# after "make install".
|
2009-12-12 01:47:14 +01:00
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
postInstall =
|
|
|
|
'' wrapProgram "$out/bin/spatch" \
|
|
|
|
--prefix "LD_LIBRARY_PATH" ":" "$out/lib" \
|
|
|
|
--prefix "PYTHONPATH" ":" "$out/share/coccinelle/python"
|
2010-01-13 09:51:22 +01:00
|
|
|
|
2010-03-13 19:19:31 +01:00
|
|
|
yes | make test
|
2009-12-12 01:47:14 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Coccinelle, a program to apply C code semantic patches";
|
|
|
|
|
|
|
|
longDescription =
|
|
|
|
'' Coccinelle is a program matching and transformation engine which
|
|
|
|
provides the language SmPL (Semantic Patch Language) for specifying
|
|
|
|
desired matches and transformations in C code. Coccinelle was
|
|
|
|
initially targeted towards performing collateral evolutions in
|
|
|
|
Linux. Such evolutions comprise the changes that are needed in
|
|
|
|
client code in response to evolutions in library APIs, and may
|
|
|
|
include modifications such as renaming a function, adding a function
|
|
|
|
argument whose value is somehow context-dependent, and reorganizing
|
|
|
|
a data structure. Beyond collateral evolutions, Coccinelle is
|
|
|
|
successfully used (by us and others) for finding and fixing bugs in
|
|
|
|
systems code.
|
|
|
|
'';
|
|
|
|
|
|
|
|
homepage = http://coccinelle.lip6.fr/;
|
|
|
|
license = "GPLv2";
|
|
|
|
|
|
|
|
maintainers = [ stdenv.lib.maintainers.ludo ];
|
|
|
|
platforms = stdenv.lib.platforms.gnu; # arbitrary choice
|
|
|
|
};
|
|
|
|
}
|