ocamlPackages.magic-trace: 1.1.0 → 1.2.1
This commit is contained in:
parent
90b30785f2
commit
205aeb68d4
2 changed files with 35 additions and 9 deletions
|
@ -1,21 +1,49 @@
|
|||
{ lib, fetchFromGitHub, buildDunePackage, async, cohttp_static_handler ? null
|
||||
, core_unix ? null, owee, ppx_jane, shell ? null }:
|
||||
{ lib
|
||||
, fetchFromGitHub
|
||||
, buildDunePackage
|
||||
, ocaml-crunch
|
||||
, angstrom
|
||||
, async
|
||||
, cohttp
|
||||
, cohttp_static_handler ? null
|
||||
, core
|
||||
, core_unix ? null
|
||||
, fzf
|
||||
, owee
|
||||
, ppx_jane
|
||||
, re
|
||||
, shell ? null
|
||||
}:
|
||||
|
||||
buildDunePackage rec {
|
||||
pname = "magic-trace";
|
||||
version = "1.1.0";
|
||||
version = "1.2.1";
|
||||
|
||||
minimalOCamlVersion = "4.12";
|
||||
duneVersion = "3";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "janestreet";
|
||||
repo = "magic-trace";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-615AOkrbQI6vRosA5Kz3Epipe9f9+Gs9+g3bVl5gzBY=";
|
||||
hash = "sha256-/9TDjCG/06mhGyqbjAdUmk6fcaq9fNDqVSw51w5EEy4=";
|
||||
};
|
||||
|
||||
buildInputs = [ async cohttp_static_handler core_unix owee ppx_jane shell ];
|
||||
nativeBuildInputs = [
|
||||
ocaml-crunch
|
||||
];
|
||||
buildInputs = [
|
||||
angstrom
|
||||
async
|
||||
cohttp
|
||||
cohttp_static_handler
|
||||
core
|
||||
core_unix
|
||||
fzf
|
||||
owee
|
||||
ppx_jane
|
||||
re
|
||||
shell
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description =
|
||||
|
|
|
@ -824,8 +824,6 @@ let
|
|||
cfstream = self.cfstream.override { inherit core_kernel; };
|
||||
};
|
||||
|
||||
magic-trace = callPackage ../development/ocaml-modules/magic-trace { };
|
||||
|
||||
phylogenetics = let
|
||||
angstrom = self.angstrom.override { inherit ppx_let; };
|
||||
in callPackage ../development/ocaml-modules/phylogenetics {
|
||||
|
@ -1022,7 +1020,7 @@ let
|
|||
|
||||
magic-mime = callPackage ../development/ocaml-modules/magic-mime { };
|
||||
|
||||
magic-trace = janeStreet_0_15.magic-trace;
|
||||
magic-trace = callPackage ../development/ocaml-modules/magic-trace { };
|
||||
|
||||
mariadb = callPackage ../development/ocaml-modules/mariadb {
|
||||
inherit (pkgs) mariadb;
|
||||
|
|
Loading…
Reference in a new issue