aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/libraries/gstreamer/validate/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'infra/libkookie/nixpkgs/pkgs/development/libraries/gstreamer/validate/default.nix')
-rw-r--r--infra/libkookie/nixpkgs/pkgs/development/libraries/gstreamer/validate/default.nix43
1 files changed, 0 insertions, 43 deletions
diff --git a/infra/libkookie/nixpkgs/pkgs/development/libraries/gstreamer/validate/default.nix b/infra/libkookie/nixpkgs/pkgs/development/libraries/gstreamer/validate/default.nix
deleted file mode 100644
index 74e898481634..000000000000
--- a/infra/libkookie/nixpkgs/pkgs/development/libraries/gstreamer/validate/default.nix
+++ /dev/null
@@ -1,43 +0,0 @@
-{ stdenv
-, fetchurl
-, pkgconfig
-, gstreamer
-, gst-plugins-base
-, python3
-, gobject-introspection
-, json-glib
-}:
-
-stdenv.mkDerivation rec {
- pname = "gst-validate";
- version = "1.16.2";
-
- src = fetchurl {
- url = "${meta.homepage}/src/${pname}/${pname}-${version}.tar.xz";
- sha256 = "1jpfrzg3yc6kp66bgq3jy14xsj3x71mk2zh0k16yf0326awwqqa8";
- };
-
- outputs = [ "out" "dev" ];
-
- nativeBuildInputs = [
- pkgconfig
- gobject-introspection
- ];
-
- buildInputs = [
- python3
- json-glib
- ];
-
- propagatedBuildInputs = [
- gstreamer
- gst-plugins-base
- ];
-
- meta = with stdenv.lib; {
- description = "Integration testing infrastructure for the GStreamer framework";
- homepage = "https://gstreamer.freedesktop.org";
- license = licenses.lgpl2Plus;
- platforms = platforms.unix;
- };
-}