From ecaa46a18b9aadafcd2ae21498047e459fa74807 Mon Sep 17 00:00:00 2001 From: Nathan van Doorn Date: Fri, 13 Oct 2023 19:28:06 +0200 Subject: [PATCH] use callPackage for deps in another place too --- ntv2-gst.nix | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/ntv2-gst.nix b/ntv2-gst.nix index c3239d3..8e76543 100644 --- a/ntv2-gst.nix +++ b/ntv2-gst.nix @@ -1,7 +1,11 @@ { stdenv, - pkgs, fetchFromGitHub, + autoconf, + automake, + pkgconfig, + libtool, + gst_all_1, ajantv2, }: stdenv.mkDerivation { @@ -15,7 +19,7 @@ stdenv.mkDerivation { sourceRoot = "source/gst-plugin"; patches = [./no.patch]; - nativeBuildInputs = with pkgs; [autoconf automake pkgconfig libtool gst_all_1.gst-plugins-base ajantv2]; + nativeBuildInputs = [autoconf automake pkgconfig libtool gst_all_1.gst-plugins-base ajantv2]; GST_NTV2 = "${ajantv2}/include"; preConfigure = '' ./autogen.sh