Files
nixpkgs/pkgs/development/ocaml-modules/cudf/default.nix
T
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

40 lines
701 B
Nix

{
lib,
buildDunePackage,
ocaml,
fetchFromGitLab,
extlib,
ounit2,
}:
buildDunePackage rec {
pname = "cudf";
version = "0.10";
minimalOCamlVersion = "4.07";
src = fetchFromGitLab {
owner = "irill";
repo = pname;
rev = "v${version}";
hash = "sha256-E4KXKnso/Q3ZwcYpKPgvswNR9qd/lafKljPMxfStedM=";
};
propagatedBuildInputs = [
extlib
];
checkInputs = [
ounit2
];
doCheck = lib.versionAtLeast ocaml.version "4.08";
meta = {
description = "Library for CUDF format";
homepage = "https://www.mancoosi.org/cudf/";
downloadPage = "https://gforge.inria.fr/projects/cudf/";
license = lib.licenses.lgpl3;
maintainers = [ ];
};
}