nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 36 lines 803 B view raw
1{ 2 lib, 3 buildDunePackage, 4 fetchFromGitLab, 5 afl-persistent, 6 pprint, 7 version ? "20250922", 8}: 9 10buildDunePackage { 11 pname = "monolith"; 12 inherit version; 13 14 minimalOCamlVersion = "4.12"; 15 16 src = fetchFromGitLab { 17 domain = "gitlab.inria.fr"; 18 owner = "fpottier"; 19 repo = "monolith"; 20 tag = version; 21 hash = "sha256-uYUbrWSE99556jiCgDUc8xDaob3rFPXLBMPM3lN6Xh8="; 22 }; 23 24 propagatedBuildInputs = [ 25 afl-persistent 26 pprint 27 ]; 28 29 meta = { 30 description = "Facilities for testing an OCaml library"; 31 homepage = "https://cambium.inria.fr/~fpottier/monolith/doc/monolith/Monolith/index.html"; 32 changelog = "https://gitlab.inria.fr/fpottier/monolith/-/raw/${version}/CHANGES.md"; 33 license = lib.licenses.lgpl3Plus; 34 maintainers = [ lib.maintainers.vbgl ]; 35 }; 36}