lol

ocamlPackages.posix-base: init at 2.0.0

authored by

Vincent Laporte and committed by
Vincent Laporte
b1f2a301 8ef6f4bd

+28
+26
pkgs/development/ocaml-modules/posix/base.nix
··· 1 + { lib, buildDunePackage, fetchFromGitHub 2 + , ctypes, integers 3 + }: 4 + 5 + buildDunePackage rec { 6 + pname = "posix-base"; 7 + version = "2.0.0"; 8 + 9 + src = fetchFromGitHub { 10 + owner = "savonet"; 11 + repo = "ocaml-posix"; 12 + rev = "v${version}"; 13 + sha256 = "18px8hfqcfy2lk8105ki3hrxxigs44gs046ba0fqda6wzd0hr82b"; 14 + }; 15 + 16 + useDune2 = true; 17 + 18 + propagatedBuildInputs = [ ctypes integers ]; 19 + 20 + meta = { 21 + homepage = "https://www.liquidsoap.info/ocaml-posix/"; 22 + description = "Base module for the posix bindings"; 23 + license = lib.licenses.mit; 24 + maintainers = [ lib.maintainers.vbgl ]; 25 + }; 26 + }
+2
pkgs/top-level/ocaml-packages.nix
··· 754 754 755 755 piqi-ocaml = callPackage ../development/ocaml-modules/piqi-ocaml { }; 756 756 757 + posix-base = callPackage ../development/ocaml-modules/posix/base.nix { }; 758 + 757 759 ppxfind = callPackage ../development/ocaml-modules/ppxfind { }; 758 760 759 761 ppxlib = callPackage ../development/ocaml-modules/ppxlib { };