Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: e92b11d964d1
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: ce6dbccdfb0f
Choose a head ref
  • 1 commit
  • 2 files changed
  • 1 contributor

Commits on Apr 27, 2020

  1. ocamlPackages.bigstring: init at 0.2

    alexfmpe authored and bennofs committed Apr 27, 2020

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    CRBroughton Craig R Broughton
    Copy the full SHA
    ce6dbcc View commit details
Showing with 26 additions and 0 deletions.
  1. +24 −0 pkgs/development/ocaml-modules/bigstring/default.nix
  2. +2 −0 pkgs/top-level/ocaml-packages.nix
24 changes: 24 additions & 0 deletions pkgs/development/ocaml-modules/bigstring/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{ lib, fetchFromGitHub, buildDunePackage }:

buildDunePackage rec {
pname = "bigstring";
version = "0.2";

minimumOCamlVersion = "4.03";

src = fetchFromGitHub {
owner = "c-cube";
repo = "ocaml-bigstring";
rev = version;
sha256 = "0ypdf29cmwmjm3djr5ygz8ls81dl41a4iz1xx5gbcdpbrdiapb77";
};

doCheck = true;

meta = with lib; {
homepage = https://github.com/c-cube/ocaml-bigstring;
description = "Bigstring built on top of bigarrays, and convenient functions";
license = licenses.bsd2;
maintainers = [ maintainers.alexfmpe ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/ocaml-packages.nix
Original file line number Diff line number Diff line change
@@ -75,6 +75,8 @@ let

bigstringaf = callPackage ../development/ocaml-modules/bigstringaf { };

bigstring = callPackage ../development/ocaml-modules/bigstring { };

biocaml = callPackage ../development/ocaml-modules/biocaml { };

bistro = callPackage ../development/ocaml-modules/bistro { };