From 60a9e7cc580666542f005396b5e2ab310f32339f Mon Sep 17 00:00:00 2001 From: Mutsuha Asada Date: Mon, 9 Jun 2025 08:28:01 +0900 Subject: [PATCH] ocamlPackages.{landmarks, landmarks-ppx}: 1.4 -> 1.5 Changelog: https://github.com/LexiFi/landmarks/releases/tag/v1.5 Diff: https://github.com/LexiFi/landmarks/compare/v1.4...v1.5 --- pkgs/development/ocaml-modules/landmarks/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/ocaml-modules/landmarks/default.nix b/pkgs/development/ocaml-modules/landmarks/default.nix index 3a39592a9ecf..b1b8e2911e71 100644 --- a/pkgs/development/ocaml-modules/landmarks/default.nix +++ b/pkgs/development/ocaml-modules/landmarks/default.nix @@ -5,16 +5,16 @@ ocaml, }: -buildDunePackage { +buildDunePackage rec { pname = "landmarks"; - version = "1.4"; + version = "1.5"; minimalOCamlVersion = "4.08"; src = fetchFromGitHub { owner = "LexiFi"; repo = "landmarks"; - rev = "b0c753cd2a4c4aa00dffdd3be187d8ed592fabf7"; - hash = "sha256-Wpr76JURUFrj7v39rdM/2Lr7boa7nL/bnPEz1vMrmQo"; + tag = "v${version}"; + hash = "sha256-eIq02D19OzDOrMDHE1Ecrgk+T6s9vj2X6B2HY+z+K8Q="; }; doCheck = lib.versionAtLeast ocaml.version "4.08" && lib.versionOlder ocaml.version "5.0";