nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

ocamlPackages.hex: 1.4.0 → 1.5.0

authored by

Vincent Laporte and committed by
Vincent Laporte
cc766b2e a29c4b0b

+7 -8
+7 -8
pkgs/development/ocaml-modules/hex/default.nix
··· 1 - { lib, fetchurl, buildDunePackage, bigarray-compat, cstruct }: 1 + { lib, fetchurl, buildDunePackage, cstruct }: 2 2 3 3 buildDunePackage rec { 4 4 pname = "hex"; 5 - version = "1.4.0"; 5 + version = "1.5.0"; 6 6 7 - useDune2 = true; 8 - 9 - minimumOCamlVersion = "4.02"; 7 + duneVersion = "3"; 8 + minimalOCamlVersion = "4.08"; 10 9 11 10 src = fetchurl { 12 - url = "https://github.com/mirage/ocaml-${pname}/releases/download/v${version}/hex-v${version}.tbz"; 13 - sha256 = "07b9y0lmnflsslkrm6xilkj40n8sf2hjqkyqghnk7sw5l0plkqsp"; 11 + url = "https://github.com/mirage/ocaml-${pname}/releases/download/v${version}/hex-${version}.tbz"; 12 + hash = "sha256-LmfuyhsDBJMHowgxtc1pS8stPn8qa0+1l/vbZHNRtNw="; 14 13 }; 15 14 16 - propagatedBuildInputs = [ bigarray-compat cstruct ]; 15 + propagatedBuildInputs = [ cstruct ]; 17 16 doCheck = true; 18 17 19 18 meta = {