about summary refs log tree commit diff
path: root/pkgs/development/libraries/gstreamer
diff options
context:
space:
mode:
authorAnton-Latukha <anton.latukha@gmail.com>2019-09-19 17:47:21 +0300
committerAnton-Latukha <anton.latukha@gmail.com>2019-09-19 17:50:46 +0300
commit37de7c56ce02ca05f50d254a6558549230a7268e (patch)
tree56f7b4945b9e0fd6e111b6498a7d31c1458b1911 /pkgs/development/libraries/gstreamer
parentdcb86e88561f5760e2c58972cc9c9ca041f3704d (diff)
downloadnixlib-37de7c56ce02ca05f50d254a6558549230a7268e.tar
nixlib-37de7c56ce02ca05f50d254a6558549230a7268e.tar.gz
nixlib-37de7c56ce02ca05f50d254a6558549230a7268e.tar.bz2
nixlib-37de7c56ce02ca05f50d254a6558549230a7268e.tar.lz
nixlib-37de7c56ce02ca05f50d254a6558549230a7268e.tar.xz
nixlib-37de7c56ce02ca05f50d254a6558549230a7268e.tar.zst
nixlib-37de7c56ce02ca05f50d254a6558549230a7268e.zip
qt_gstreamer1: drop
If someone would be interested - last commit builds with {Qt5, Qt5 config flag}
Diffstat (limited to 'pkgs/development/libraries/gstreamer')
-rw-r--r--pkgs/development/libraries/gstreamer/qt-gstreamer/default.nix32
1 files changed, 0 insertions, 32 deletions
diff --git a/pkgs/development/libraries/gstreamer/qt-gstreamer/default.nix b/pkgs/development/libraries/gstreamer/qt-gstreamer/default.nix
deleted file mode 100644
index a099643061a1..000000000000
--- a/pkgs/development/libraries/gstreamer/qt-gstreamer/default.nix
+++ /dev/null
@@ -1,32 +0,0 @@
-{ stdenv, fetchurl, fetchpatch, gst_all_1, boost, glib, qt4, cmake
-, automoc4, flex, bison, pkgconfig }:
-
-stdenv.mkDerivation rec {
-  name = "${pname}-1.2.0";
-  pname = "qt-gstreamer";
-
-  src = fetchurl {
-    url = "https://gstreamer.freedesktop.org/src/${pname}/${name}.tar.xz";
-    sha256 = "9f3b492b74cad9be918e4c4db96df48dab9c012f2ae5667f438b64a4d92e8fd4";
-  };
-
-  patches = [
-    (fetchpatch {
-      url = "https://cgit.freedesktop.org/gstreamer/qt-gstreamer/patch/?id=e2ca8094aa8d0eac1c3a98df66fe94ce0c754088";
-      sha256 = "1qps0nlc26d74wk8h96xl5s3d9qrdx6c0ph0zpl1dnc691lgyf6s";
-    })
-  ];
-
-  outputs = [ "out" "dev" ];
-
-  buildInputs = [ gst_all_1.gstreamer gst_all_1.gst-plugins-base glib qt4 ];
-  propagatedBuildInputs = [ boost ];
-  nativeBuildInputs = [ cmake automoc4 flex bison pkgconfig ];
-
-  cmakeFlags = "-DUSE_QT_PLUGIN_DIR=OFF -DUSE_GST_PLUGIN_DIR=OFF";
-
-  meta = with stdenv.lib; {
-    platforms = platforms.linux;
-    license = licenses.lgpl21;
-  };
-}