ocamlPackages.camlpdf: 2.8 → 2.8.1

ocamlPackages.cpdf: 2.8 → 2.8.1
This commit is contained in:
Vincent Laporte
2026-01-05 22:40:38 +01:00
parent a6d7fdd489
commit 914aa19bdf
2 changed files with 10 additions and 10 deletions
@@ -6,15 +6,15 @@
findlib,
}:
stdenv.mkDerivation rec {
version = "2.8";
stdenv.mkDerivation (finalAttrs: {
version = "2.8.1";
pname = "ocaml${ocaml.version}-camlpdf";
src = fetchFromGitHub {
owner = "johnwhitington";
repo = "camlpdf";
rev = "v${version}";
hash = "sha256-+SFuFqlrP0nwm199y0QFWYvlwD+Cbh0PHA5bmXIWdNk=";
tag = "v${finalAttrs.version}";
hash = "sha256-ZExQtcFBPiS7c6v+WEjZYQ6zXtqRTNLV0hYzYSB/eLE=";
};
nativeBuildInputs = [
@@ -35,4 +35,4 @@ stdenv.mkDerivation rec {
maintainers = with lib.maintainers; [ vbgl ];
broken = lib.versionOlder ocaml.version "4.10";
};
}
})
@@ -7,15 +7,15 @@
camlpdf,
}:
stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
pname = "ocaml${ocaml.version}-cpdf";
version = "2.8";
version = "2.8.1";
src = fetchFromGitHub {
owner = "johnwhitington";
repo = "cpdf-source";
rev = "v${version}";
hash = "sha256-DvTY5EQcvnL76RlQTcVqBiycqbCdGQCXzarSMH2P/pg=";
tag = "v${finalAttrs.version}";
hash = "sha256-MK48ajZmpXibbaJ4x2vaHhh2N+OBRqj7zT8eaVenxDY=";
};
nativeBuildInputs = [
@@ -44,4 +44,4 @@ stdenv.mkDerivation rec {
inherit (ocaml.meta) platforms;
broken = lib.versionOlder ocaml.version "4.10";
};
}
})