mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 13:10:33 +00:00
ocamlPackages.ocplib-simplex: init at 0.3
ocplib-simplex is a (fully) functional OCaml implementation of the simplex algorithm for solving systems of linear inequalities. homepage: https://github.com/OCamlPro-Iguernlala/ocplib-simplex
This commit is contained in:
parent
b75e13b7e6
commit
97a496a472
29
pkgs/development/ocaml-modules/ocplib-simplex/default.nix
Normal file
29
pkgs/development/ocaml-modules/ocplib-simplex/default.nix
Normal file
|
@ -0,0 +1,29 @@
|
|||
{ stdenv, fetchFromGitHub, autoreconfHook, ocaml, findlib }:
|
||||
|
||||
let
|
||||
pname = "ocplib-simplex";
|
||||
version = "0.3";
|
||||
in
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "ocaml${ocaml.version}-${pname}-${version}";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "OCamlPro-Iguernlala";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "1fmz38w2cj9fny4adqqyil59dvndqkr59s7wk2gqs47r72b6sisa";
|
||||
};
|
||||
|
||||
buildInputs = [ autoreconfHook ocaml findlib ];
|
||||
|
||||
createFindlibDestdir = 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;
|
||||
inherit (ocaml.meta) platforms;
|
||||
license = stdenv.lib.licenses.lgpl21;
|
||||
maintainers = [ stdenv.lib.maintainers.vbgl ];
|
||||
};
|
||||
}
|
|
@ -339,6 +339,8 @@ let
|
|||
|
||||
ocplib-endian = callPackage ../development/ocaml-modules/ocplib-endian { };
|
||||
|
||||
ocplib-simplex = callPackage ../development/ocaml-modules/ocplib-simplex { };
|
||||
|
||||
ocsigen_server = callPackage ../development/ocaml-modules/ocsigen-server { };
|
||||
|
||||
ojquery = callPackage ../development/ocaml-modules/ojquery { };
|
||||
|
|
Loading…
Reference in a new issue