Unverified Commit 914aa19b authored by Vincent Laporte's avatar Vincent Laporte
Browse files

ocamlPackages.camlpdf: 2.8 → 2.8.1

ocamlPackages.cpdf: 2.8 → 2.8.1
parent a6d7fdd4
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -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";
  };
}
})
+5 −5
Original line number Diff line number Diff line
@@ -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";
  };
}
})