lol

ocamlPackages.magic-trace: 1.1.0 → 1.2.1

authored by

Vincent Laporte and committed by
Vincent Laporte
205aeb68 90b30785

+35 -9
+34 -6
pkgs/development/ocaml-modules/magic-trace/default.nix
··· 1 - { lib, fetchFromGitHub, buildDunePackage, async, cohttp_static_handler ? null 2 - , core_unix ? null, owee, ppx_jane, shell ? null }: 1 + { lib 2 + , fetchFromGitHub 3 + , buildDunePackage 4 + , ocaml-crunch 5 + , angstrom 6 + , async 7 + , cohttp 8 + , cohttp_static_handler ? null 9 + , core 10 + , core_unix ? null 11 + , fzf 12 + , owee 13 + , ppx_jane 14 + , re 15 + , shell ? null 16 + }: 3 17 4 18 buildDunePackage rec { 5 19 pname = "magic-trace"; 6 - version = "1.1.0"; 20 + version = "1.2.1"; 7 21 8 22 minimalOCamlVersion = "4.12"; 9 - duneVersion = "3"; 10 23 11 24 src = fetchFromGitHub { 12 25 owner = "janestreet"; 13 26 repo = "magic-trace"; 14 27 rev = "v${version}"; 15 - sha256 = "sha256-615AOkrbQI6vRosA5Kz3Epipe9f9+Gs9+g3bVl5gzBY="; 28 + hash = "sha256-/9TDjCG/06mhGyqbjAdUmk6fcaq9fNDqVSw51w5EEy4="; 16 29 }; 17 30 18 - buildInputs = [ async cohttp_static_handler core_unix owee ppx_jane shell ]; 31 + nativeBuildInputs = [ 32 + ocaml-crunch 33 + ]; 34 + buildInputs = [ 35 + angstrom 36 + async 37 + cohttp 38 + cohttp_static_handler 39 + core 40 + core_unix 41 + fzf 42 + owee 43 + ppx_jane 44 + re 45 + shell 46 + ]; 19 47 20 48 meta = with lib; { 21 49 description =
+1 -3
pkgs/top-level/ocaml-packages.nix
··· 824 824 cfstream = self.cfstream.override { inherit core_kernel; }; 825 825 }; 826 826 827 - magic-trace = callPackage ../development/ocaml-modules/magic-trace { }; 828 - 829 827 phylogenetics = let 830 828 angstrom = self.angstrom.override { inherit ppx_let; }; 831 829 in callPackage ../development/ocaml-modules/phylogenetics { ··· 1022 1020 1023 1021 magic-mime = callPackage ../development/ocaml-modules/magic-mime { }; 1024 1022 1025 - magic-trace = janeStreet_0_15.magic-trace; 1023 + magic-trace = callPackage ../development/ocaml-modules/magic-trace { }; 1026 1024 1027 1025 mariadb = callPackage ../development/ocaml-modules/mariadb { 1028 1026 inherit (pkgs) mariadb;