Files
nixpkgs/pkgs/development/ocaml-modules/fix/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

28 lines
611 B
Nix

{
lib,
fetchFromGitLab,
buildDunePackage,
}:
buildDunePackage rec {
pname = "fix";
version = "20250919";
src = fetchFromGitLab {
domain = "gitlab.inria.fr";
owner = "fpottier";
repo = "fix";
tag = version;
hash = "sha256-CVxOLlSKKX1kb1bi6IbSo7SH5GsVynI4de0c5NUmq+s=";
};
minimalOCamlVersion = "4.03";
meta = {
homepage = "https://gitlab.inria.fr/fpottier/fix/";
description = "Simple OCaml module for computing the least solution of a system of monotone equations";
license = lib.licenses.lgpl2Only;
maintainers = with lib.maintainers; [ vbgl ];
};
}