nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 29 lines 677 B view raw
1{ 2 lib, 3 buildDunePackage, 4 dune-site, 5 fetchzip, 6 frama-c, 7}: 8 9buildDunePackage (finalAttrs: { 10 pname = "frama-c-lannotate"; 11 version = "0.2.4"; 12 13 src = fetchzip { 14 url = "https://git.frama-c.com/pub/ltest/lannotate/-/archive/${finalAttrs.version}/lannotate-${finalAttrs.version}.tar.bz2"; 15 hash = "sha256-JoD2M3R3/DcUMt33QOvwqHg4eToCgjB8riKc09TWdyc="; 16 }; 17 18 propagatedBuildInputs = [ 19 dune-site 20 frama-c 21 ]; 22 23 meta = { 24 description = "Lannotate plugin of Frama-C, part of the LTest suite"; 25 homepage = "https://frama-c.com/fc-plugins/ltest.html"; 26 license = lib.licenses.lgpl2; 27 maintainers = with lib.maintainers; [ redianthus ]; 28 }; 29})