Commit afd309e2 authored by Mario Rodas's avatar Mario Rodas Committed by Vincent Laporte
Browse files
parent b9a58b4a
Loading
Loading
Loading
Loading
+3 −5
Original line number Diff line number Diff line
{ lib, fetchFromGitHub, buildDunePackage
, seq
, containers, qcheck
}:

buildDunePackage rec {
  version = "0.4";
  version = "0.5";
  pname = "oseq";

  src = fetchFromGitHub {
    owner = "c-cube";
    repo = pname;
    rev = "v${version}";
    hash = "sha256-FoCBvvPwa/dUCrgDEd0clEKAO7EcpedjaO4v+yUO874=";
    hash = "sha256-JMIcRyciNvLOE1Gpin7CpcDNSmGYFxZWsDN0X6D/NVI=";
  };

  propagatedBuildInputs = [ seq ];

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

  doCheck = true;