From 97e9d370d71f7ef267f527b06f4098d8e5b3eb86 Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Mon, 20 Nov 2023 20:02:29 +0100 Subject: [PATCH] =?UTF-8?q?obuild:=200.1.10=20=E2=86=92=200.1.11?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pkgs/development/tools/ocaml/obuild/default.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/development/tools/ocaml/obuild/default.nix b/pkgs/development/tools/ocaml/obuild/default.nix index 4a0a87577cbf..94848a79360c 100644 --- a/pkgs/development/tools/ocaml/obuild/default.nix +++ b/pkgs/development/tools/ocaml/obuild/default.nix @@ -1,19 +1,19 @@ -{ lib, stdenv, fetchFromGitHub, ocaml }: +{ lib, stdenv, fetchFromGitHub, ocamlPackages }: stdenv.mkDerivation rec { pname = "obuild"; - version = "0.1.10"; + version = "0.1.11"; src = fetchFromGitHub { owner = "ocaml-obuild"; repo = "obuild"; rev = "obuild-v${version}"; - sha256 = "sha256-dqWP9rwWmr7i3O29v/kipJL01B3qQozaToOFCdfTWZU="; + hash = "sha256-me9/FVD7S0uPIpFZzcxDfYKVWn9ifq6JryBAGCo681I="; }; strictDeps = true; - nativeBuildInputs = [ ocaml ]; + nativeBuildInputs = with ocamlPackages; [ ocaml findlib ]; buildPhase = '' patchShebangs ./bootstrap @@ -27,7 +27,7 @@ stdenv.mkDerivation rec { meta = { homepage = "https://github.com/ocaml-obuild/obuild"; - platforms = ocaml.meta.platforms or [ ]; + inherit (ocamlPackages.ocaml.meta) platforms; description = "Simple package build system for OCaml"; license = lib.licenses.lgpl21; maintainers = with lib.maintainers; [ ];