summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2024-11-20 17:06:21 +0100
committergithub-actions[bot] <github-actions[bot]@users.noreply.github.com>2024-11-26 12:26:07 +0000
commit60fce32e80cb0e31c3b1a91508a1ae524875d353 (patch)
tree2a51f66c84262e7228f10c366d774d4d70ef4ede
parentyggdrasil: 0.5.9 -> 0.5.10 (diff)
downloadnixpkgs-origin/backport-357589-to-release-24.11.tar.gz
ocamlPackages.findlib: 1.9.7 → 1.9.8origin/backport-357589-to-release-24.11
(cherry picked from commit 3d20b485d9acfe4290c0296f0d75d7d8d2c2520a)
-rw-r--r--pkgs/development/tools/ocaml/findlib/default.nix8
1 files changed, 2 insertions, 6 deletions
diff --git a/pkgs/development/tools/ocaml/findlib/default.nix b/pkgs/development/tools/ocaml/findlib/default.nix
index 283d6a4deb7a..e8a821fcd59a 100644
--- a/pkgs/development/tools/ocaml/findlib/default.nix
+++ b/pkgs/development/tools/ocaml/findlib/default.nix
@@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
pname = "ocaml${ocaml.version}-findlib";
- version = "1.9.7";
+ version = "1.9.8";
src = fetchurl {
url = "http://download.camlcity.org/download/findlib-${version}.tar.gz";
- hash = "sha256-zNgiAI8bh6vVahL/f0rxlaDNouO8AROSF3miBcl5Hik=";
+ hash = "sha256-ZiyRD3dOn+46GcTgV/OAWBqy/E7lLaR2EwSsnDG4hp0=";
};
nativeBuildInputs = [ ocaml ];
@@ -14,10 +14,6 @@ stdenv.mkDerivation rec {
patches = [ ./ldconf.patch ./install_topfind.patch ];
- postPatch = ''
- substituteInPlace src/bytes/Makefile --replace-warn OCAMLOPT_SHARED OCAMLOPT
- '';
-
dontAddPrefix=true;
dontAddStaticConfigureFlags = true;
configurePlatforms = [];