Unverified Commit c15d6fb8 authored by superherointj's avatar superherointj Committed by GitHub
Browse files

Merge pull request #220666 from vbgl/ocaml-psq-0.2.1

ocamlPackages.psq: 0.2.0 → 0.2.1
parents 974b03e3 94f176a4
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -4,6 +4,8 @@ buildDunePackage rec {
  pname = "lru";
  version = "0.3.1";

  duneVersion = "3";

  src = fetchurl {
    url = "https://github.com/pqwy/lru/releases/download/v${version}/lru-${version}.tbz";
    hash = "sha256-bL4j0np9WyRPhpwLiBQNR/cPQTpkYu81wACTJdSyNv0=";
+5 −5
Original line number Diff line number Diff line
{ lib, buildDunePackage, ocaml, fetchurl, seq, qcheck-alcotest }:

buildDunePackage rec {
  minimumOCamlVersion = "4.03";
  minimalOCamlVersion = "4.03";
  pname = "psq";
  version = "0.2.0";
  version = "0.2.1";

  useDune2 = true;
  duneVersion = "3";

  src = fetchurl {
    url = "https://github.com/pqwy/psq/releases/download/v${version}/psq-v${version}.tbz";
    sha256 = "1j4lqkq17rskhgcrpgr4n1m1a2b1x35mlxj6f9g05rhpmgvgvknk";
    url = "https://github.com/pqwy/psq/releases/download/v${version}/psq-${version}.tbz";
    hash = "sha256-QgBfUz6r50sXme4yuJBWVM1moivtSvK9Jmso2EYs00Q=";
  };

  propagatedBuildInputs = [ seq ];