mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 16:03:23 +00:00
82aaf63703
ocamlPackages.ocplib-simplex: 0.4 → 0.5
25 lines
674 B
Nix
25 lines
674 B
Nix
{ lib, fetchFromGitHub, buildDunePackage, logs, num }:
|
|
|
|
buildDunePackage rec {
|
|
pname = "ocplib-simplex";
|
|
version = "0.5";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "OCamlPro-Iguernlala";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-sy5QUmghG28tXlwbKWx3PpBGTtzXarTSzd1WLSYyvbc=";
|
|
};
|
|
|
|
propagatedBuildInputs = [ logs num ];
|
|
|
|
doCheck = true;
|
|
|
|
meta = {
|
|
description = "An OCaml library implementing a simplex algorithm, in a functional style, for solving systems of linear inequalities";
|
|
homepage = "https://github.com/OCamlPro-Iguernlala/ocplib-simplex";
|
|
license = lib.licenses.lgpl21Only;
|
|
maintainers = [ lib.maintainers.vbgl ];
|
|
};
|
|
}
|