2017-03-03 21:27:23 +00:00
|
|
|
{ fetchurl, stdenv, python, ncurses, ocamlPackages, pkgconfig }:
|
2009-12-12 00:47:14 +00:00
|
|
|
|
2015-01-08 10:16:02 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "coccinelle-${version}";
|
2017-03-03 21:27:23 +00:00
|
|
|
version = "1.0.6";
|
2009-12-12 00:47:14 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://coccinelle.lip6.fr/distrib/${name}.tgz";
|
2017-03-03 21:27:23 +00:00
|
|
|
sha256 = "02g9hmwkvfl838zz690yra5jzrqjg6y6ffxkrfcsx790bhkfsll4";
|
2009-12-12 00:47:14 +00:00
|
|
|
};
|
|
|
|
|
2012-04-09 10:42:20 +01:00
|
|
|
buildInputs = with ocamlPackages; [
|
2017-03-03 21:27:23 +00:00
|
|
|
ocaml findlib menhir
|
2012-09-11 14:02:37 +01:00
|
|
|
ocaml_pcre pycaml
|
|
|
|
python ncurses pkgconfig
|
2012-04-09 10:42:20 +01:00
|
|
|
];
|
2012-02-16 23:55:46 +00:00
|
|
|
|
2017-03-03 21:27:23 +00:00
|
|
|
doCheck = !stdenv.isDarwin;
|
2012-04-12 16:30:02 +01:00
|
|
|
|
2017-03-03 21:27:23 +00:00
|
|
|
# The build system builds two versions of spgen:
|
|
|
|
# 'spgen' with ocamlc -custom (bytecode specially linked)
|
|
|
|
# and 'spgen.opt' using ocamlopt.
|
|
|
|
# I'm not sure of the intentions here, but the way
|
|
|
|
# the 'spgen' binary is produced results in an
|
|
|
|
# invalid/incorrect interpreter path (/lib/ld-linux*).
|
|
|
|
# We could patch it, but without knowing why it's
|
|
|
|
# finding the wrong path it seems safer to use
|
|
|
|
# the .opt version that is built correctly.
|
|
|
|
# All that said, our fix here is simple: remove 'spgen'.
|
|
|
|
# The bin/spgen entrypoint is really a bash script
|
|
|
|
# and will use spgen.opt if 'spgen' doesn't exist.
|
|
|
|
postInstall = ''
|
|
|
|
rm $out/lib/coccinelle/spgen/spgen
|
|
|
|
'';
|
2012-09-11 14:02:37 +01:00
|
|
|
|
2009-12-12 00:47:14 +00:00
|
|
|
meta = {
|
2014-08-24 15:21:08 +01:00
|
|
|
description = "Program to apply semantic patches to C code";
|
2015-01-08 10:16:02 +00:00
|
|
|
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.
|
|
|
|
'';
|
2009-12-12 00:47:14 +00:00
|
|
|
|
|
|
|
homepage = http://coccinelle.lip6.fr/;
|
2014-06-19 05:19:00 +01:00
|
|
|
license = stdenv.lib.licenses.gpl2;
|
2015-01-08 10:16:02 +00:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
|
|
|
maintainers = [ stdenv.lib.maintainers.thoughtpolice ];
|
2009-12-12 00:47:14 +00:00
|
|
|
};
|
|
|
|
}
|