ajantv2-nix/ntv2-gst/default.nix

23 lines
400 B
Nix
Raw Permalink Normal View History

2023-10-02 22:56:38 +01:00
{
stdenv,
2023-10-17 08:49:56 +01:00
ntv2-gst-src,
autoconf,
automake,
pkg-config,
libtool,
gst_all_1,
ntv2,
2023-10-02 22:56:38 +01:00
}:
stdenv.mkDerivation {
name = "ntv2-gst";
2023-10-17 08:49:56 +01:00
src = ntv2-gst-src;
2023-10-02 22:56:38 +01:00
sourceRoot = "source/gst-plugin";
patches = [./no.patch];
nativeBuildInputs = [autoconf automake pkg-config libtool gst_all_1.gst-plugins-base ntv2];
GST_NTV2 = "${ntv2}/include";
2023-10-02 22:56:38 +01:00
preConfigure = ''
./autogen.sh
'';
}