Commit a21c18ab authored by Mutsuha Asada's avatar Mutsuha Asada Committed by Vincent Laporte
Browse files
parent e75ddef6
Loading
Loading
Loading
Loading
+5 −3
Original line number Diff line number Diff line
@@ -4,23 +4,25 @@
  buildDunePackage,
  alcotest,
  pkg-config,
  dune-configurator,
}:

buildDunePackage rec {
  pname = "bigstringaf";
  version = "0.9.0";
  version = "0.10.0";

  minimalOCamlVersion = "4.08";
  duneVersion = "3";

  src = fetchFromGitHub {
    owner = "inhabitedtype";
    repo = pname;
    rev = version;
    hash = "sha256-HXPjnE56auy2MI6HV2XuBX/VeqsO50HFzTul17lKEqE=";
    hash = "sha256-p1hdB3ArOd2UX7S6YvXCFbYjEiXdMDmBaC/lFQgua7Q=";
  };

  nativeBuildInputs = [ pkg-config ];
  buildInputs = [ dune-configurator ];

  checkInputs = [ alcotest ];
  doCheck = true;