forked from mirrors/nixpkgs
ocamlPackages.ppx_blob: separate checkInputs
This commit is contained in:
parent
84cf00f980
commit
7c15d4b15f
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, fetchurl, buildDunePackage, alcotest, ocaml-migrate-parsetree }:
|
||||
{ lib, fetchurl, buildDunePackage, alcotest, ocaml-migrate-parsetree }:
|
||||
|
||||
buildDunePackage rec {
|
||||
pname = "ppx_blob";
|
||||
|
@ -9,10 +9,11 @@ buildDunePackage rec {
|
|||
sha256 = "1xmslk1mwdzhy1bydgsjlcb7h544c39hvxa8lywp8w72gaggjl16";
|
||||
};
|
||||
|
||||
buildInputs = [ alcotest ocaml-migrate-parsetree ];
|
||||
checkInputs = lib.optional doCheck alcotest;
|
||||
buildInputs = [ ocaml-migrate-parsetree ];
|
||||
doCheck = true;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/johnwhitington/ppx_blob";
|
||||
description = "OCaml ppx to include binary data from a file as a string";
|
||||
license = licenses.unlicense;
|
||||
|
|
Loading…
Reference in a new issue