mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-31 20:54:56 +00:00
34 lines
688 B
Nix
34 lines
688 B
Nix
{
|
|
lib,
|
|
buildDunePackage,
|
|
dune-site,
|
|
fetchFromGitLab,
|
|
frama-c,
|
|
}:
|
|
|
|
buildDunePackage (finalAttrs: {
|
|
pname = "frama-c-lannotate";
|
|
version = "0.2.6";
|
|
|
|
src = fetchFromGitLab {
|
|
domain = "git.frama-c.com";
|
|
group = "pub";
|
|
owner = "ltest";
|
|
repo = "lannotate";
|
|
rev = finalAttrs.version;
|
|
hash = "sha256-F08YrRtRdRZXNfGqdIc0ATOfWN8Kw0RXYY579da9Xuw=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
dune-site
|
|
frama-c
|
|
];
|
|
|
|
meta = {
|
|
description = "Lannotate plugin of Frama-C, part of the LTest suite";
|
|
homepage = "https://frama-c.com/fc-plugins/ltest.html";
|
|
license = lib.licenses.lgpl2;
|
|
maintainers = with lib.maintainers; [ redianthus ];
|
|
};
|
|
})
|