Files
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

65 lines
1.7 KiB
Nix

{
stdenv,
lib,
fetchFromGitHub,
ocamlPackages,
pkg-config,
autoreconfHook,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "coccinelle";
version = "1.3.0";
src = fetchFromGitHub {
repo = "coccinelle";
rev = finalAttrs.version;
owner = "coccinelle";
hash = "sha256-be95cuFP6bAdpCT0Z9zBAx9cc3gYuuXAmHYaI/bmyTE=";
};
nativeBuildInputs = with ocamlPackages; [
autoreconfHook
pkg-config
ocaml
findlib
menhir
];
buildInputs = with ocamlPackages; [
ocaml_pcre
parmap
pyml
stdcompat
];
strictDeps = true;
postPatch = ''
# Ensure dependencies from Nixpkgs are picked up.
rm -rf bundles/
'';
meta = {
description = "Program to apply semantic patches to C code";
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 = "https://coccinelle.gitlabpages.inria.fr/website/";
license = lib.licenses.gpl2Only;
platforms = lib.platforms.unix;
maintainers = [ lib.maintainers.thoughtpolice ];
};
})