ocamlPackages.hidapi: use Dune 2

This commit is contained in:
Vincent Laporte 2021-03-31 20:47:50 +02:00 committed by Vincent Laporte
parent eb0980855d
commit d99c24d00a

View file

@ -1,4 +1,4 @@
{ pkgs, lib, fetchurl, buildDunePackage, pkg-config { pkgs, lib, fetchurl, buildDunePackage, pkg-config, dune-configurator
, bigstring, , bigstring,
}: }:
@ -6,6 +6,8 @@ buildDunePackage rec {
pname = "hidapi"; pname = "hidapi";
version = "1.1.1"; version = "1.1.1";
useDune2 = true;
src = fetchurl { src = fetchurl {
url = "https://github.com/vbmithr/ocaml-hidapi/releases/download/${version}/${pname}-${version}.tbz"; url = "https://github.com/vbmithr/ocaml-hidapi/releases/download/${version}/${pname}-${version}.tbz";
sha256 = "1j7rd7ajrzla76r3sxljx6fb18f4f4s3jd7vhv59l2ilxyxycai2"; sha256 = "1j7rd7ajrzla76r3sxljx6fb18f4f4s3jd7vhv59l2ilxyxycai2";
@ -13,7 +15,7 @@ buildDunePackage rec {
minimumOCamlVersion = "4.03"; minimumOCamlVersion = "4.03";
buildInputs = [ pkgs.hidapi pkg-config ]; buildInputs = [ pkgs.hidapi pkg-config dune-configurator ];
propagatedBuildInputs = [ bigstring ]; propagatedBuildInputs = [ bigstring ];
doCheck = true; doCheck = true;