aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/libraries/gstreamer/devtools/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'infra/libkookie/nixpkgs/pkgs/development/libraries/gstreamer/devtools/default.nix')
-rw-r--r--infra/libkookie/nixpkgs/pkgs/development/libraries/gstreamer/devtools/default.nix62
1 files changed, 62 insertions, 0 deletions
diff --git a/infra/libkookie/nixpkgs/pkgs/development/libraries/gstreamer/devtools/default.nix b/infra/libkookie/nixpkgs/pkgs/development/libraries/gstreamer/devtools/default.nix
new file mode 100644
index 000000000000..fe4c7005f603
--- /dev/null
+++ b/infra/libkookie/nixpkgs/pkgs/development/libraries/gstreamer/devtools/default.nix
@@ -0,0 +1,62 @@
+{ stdenv
+, fetchurl
+, meson
+, ninja
+, pkgconfig
+, gstreamer
+, gst-plugins-base
+, python3
+, gobject-introspection
+, json-glib
+}:
+
+stdenv.mkDerivation rec {
+ pname = "gst-devtools";
+ version = "1.18.1";
+
+ src = fetchurl {
+ url = "${meta.homepage}/src/${pname}/${pname}-${version}.tar.xz";
+ sha256 = "1pxhg8n5nl34baq6mb07i27b33gaw47zrv5yalyj6f12pnx148ki";
+ };
+
+ patches = [
+ ./fix_pkgconfig_includedir.patch
+ ];
+
+ outputs = [
+ "out"
+ "dev"
+ # "devdoc" # disabled until `hotdoc` is packaged in nixpkgs
+ ];
+
+ nativeBuildInputs = [
+ meson
+ ninja
+ pkgconfig
+ gobject-introspection
+
+ # documentation
+ # TODO add hotdoc here
+ ];
+
+ buildInputs = [
+ python3
+ json-glib
+ ];
+
+ propagatedBuildInputs = [
+ gstreamer
+ gst-plugins-base
+ ];
+
+ mesonFlags = [
+ "-Ddoc=disabled" # `hotdoc` not packaged in nixpkgs as of writing
+ ];
+
+ meta = with stdenv.lib; {
+ description = "Integration testing infrastructure for the GStreamer framework";
+ homepage = "https://gstreamer.freedesktop.org";
+ license = licenses.lgpl2Plus;
+ platforms = platforms.unix;
+ };
+}