nixpkgs/pkgs/development/ocaml-modules/nonstd/default.nix
Ulrik Strid d6e2e39a6e ocamlPackages.nonstd,facile: run dune upgrade for newer ocaml versions
This allows us to build the packages on OCaml >=4.12

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2022-03-25 13:55:18 +01:00

25 lines
653 B
Nix

{ lib, fetchzip, buildDunePackage, ocaml }:
buildDunePackage rec {
pname = "nonstd";
version = "0.0.3";
minimalOCamlVersion = "4.02";
src = fetchzip {
url = "https://bitbucket.org/smondet/${pname}/get/${pname}.${version}.tar.gz";
sha256 = "0ccjwcriwm8fv29ij1cnbc9win054kb6pfga3ygzdbjpjb778j46";
};
useDune2 = lib.versionAtLeast ocaml.version "4.12";
postPatch = lib.optionalString useDune2 "dune upgrade";
doCheck = true;
meta = with lib; {
homepage = "https://bitbucket.org/smondet/nonstd";
description = "Non-standard mini-library";
license = licenses.isc;
maintainers = [ maintainers.alexfmpe ];
};
}