From 4540dccd9b1746a08efee1b2bf7741a96fbaab18 Mon Sep 17 00:00:00 2001 From: twesterhout <14264576+twesterhout@users.noreply.github.com> Date: Wed, 21 Jun 2023 10:58:24 +0200 Subject: [PATCH 1/2] maintainers: add twesterhout --- maintainers/maintainer-list.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index a2cfa44e43c8..6e680a933d2e 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -16598,6 +16598,12 @@ githubId = 9413924; name = "Thorsten Weber"; }; + twesterhout = { + name = "Tom Westerhout"; + matrix = "@twesterhout:matrix.org"; + github = "twesterhout"; + githubId = 14264576; + }; twey = { email = "twey@twey.co.uk"; github = "Twey"; From d474fb31b69c75153a55b25de76ef7d3c1ba3332 Mon Sep 17 00:00:00 2001 From: twesterhout <14264576+twesterhout@users.noreply.github.com> Date: Wed, 21 Jun 2023 10:57:57 +0200 Subject: [PATCH 2/2] halide: remove mesa dependency on darwin --- pkgs/development/compilers/halide/default.nix | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/pkgs/development/compilers/halide/default.nix b/pkgs/development/compilers/halide/default.nix index 636506836dc9..0f5a330faa18 100644 --- a/pkgs/development/compilers/halide/default.nix +++ b/pkgs/development/compilers/halide/default.nix @@ -3,9 +3,11 @@ , lib , fetchFromGitHub , cmake +, libffi , libpng , libjpeg , mesa +, libGL , eigen , openblas , blas @@ -43,11 +45,14 @@ stdenv.mkDerivation rec { llvmPackages.lld llvmPackages.openmp llvmPackages.libclang + libffi libpng libjpeg - mesa eigen openblas + ] ++ lib.optionals (!stdenv.isDarwin) [ + mesa + libGL ]; nativeBuildInputs = [ cmake ]; @@ -57,6 +62,6 @@ stdenv.mkDerivation rec { homepage = "https://halide-lang.org"; license = licenses.mit; platforms = platforms.all; - maintainers = with maintainers; [ ck3d atila ]; + maintainers = with maintainers; [ ck3d atila twesterhout ]; }; }