summary refs log tree commit diff
path: root/pkgs/development/libraries/gstreamer
diff options
context:
space:
mode:
authorWill Dietz <w@wdtz.org>2019-10-02 12:04:39 -0500
committerJan Tojnar <jtojnar@gmail.com>2019-11-14 12:09:06 +0100
commit5b1920fd0672a4d30fb3914eccc1257c2bf0bb90 (patch)
tree12f65fb631f66b5b39a7cc891b06c52f55f7b9eb /pkgs/development/libraries/gstreamer
parent56a60bf216af7830620297b301f1b2797bcd7b3f (diff)
downloadnixpkgs-5b1920fd0672a4d30fb3914eccc1257c2bf0bb90.tar
nixpkgs-5b1920fd0672a4d30fb3914eccc1257c2bf0bb90.tar.gz
nixpkgs-5b1920fd0672a4d30fb3914eccc1257c2bf0bb90.tar.bz2
nixpkgs-5b1920fd0672a4d30fb3914eccc1257c2bf0bb90.tar.lz
nixpkgs-5b1920fd0672a4d30fb3914eccc1257c2bf0bb90.tar.xz
nixpkgs-5b1920fd0672a4d30fb3914eccc1257c2bf0bb90.tar.zst
nixpkgs-5b1920fd0672a4d30fb3914eccc1257c2bf0bb90.zip
gst_all_1.gst-validate: 1.16.0 -> 1.16.1
Diffstat (limited to 'pkgs/development/libraries/gstreamer')
-rw-r--r--pkgs/development/libraries/gstreamer/validate/default.nix44
1 files changed, 24 insertions, 20 deletions
diff --git a/pkgs/development/libraries/gstreamer/validate/default.nix b/pkgs/development/libraries/gstreamer/validate/default.nix
index 74c58cd4c80..ad424641b81 100644
--- a/pkgs/development/libraries/gstreamer/validate/default.nix
+++ b/pkgs/development/libraries/gstreamer/validate/default.nix
@@ -1,39 +1,43 @@
-{ stdenv, fetchurl, pkgconfig, gstreamer, gst-plugins-base
-, python, gobject-introspection, json-glib
+{ stdenv
+, fetchurl
+, pkgconfig
+, gstreamer
+, gst-plugins-base
+, python
+, gobject-introspection
+, json-glib
 }:
 
 stdenv.mkDerivation rec {
   pname = "gst-validate";
-  version = "1.16.0";
-
-  meta = {
-    description = "Integration testing infrastructure for the GStreamer framework";
-    homepage = https://gstreamer.freedesktop.org;
-    license = stdenv.lib.licenses.lgpl2Plus;
-    platforms = stdenv.lib.platforms.unix;
-  };
+  version = "1.16.1";
 
   src = fetchurl {
     url = "${meta.homepage}/src/${pname}/${pname}-${version}.tar.xz";
-    sha256 = "1jfnd0g9hmdbqfxsx96yc9vpf1w6m33hqwrr6lj4i83kl54awcck";
+    sha256 = "1698arvmpb0cvyi8ll1brvs51vs7i3f3fw19iswh8xhj5adrn1vz";
   };
 
   outputs = [ "out" "dev" ];
 
   nativeBuildInputs = [
-    pkgconfig gobject-introspection
+    pkgconfig
+    gobject-introspection
   ];
 
   buildInputs = [
-    python json-glib
+    python
+    json-glib
   ];
 
-  propagatedBuildInputs = [ gstreamer gst-plugins-base ];
-
-  enableParallelBuilding = true;
-
-  mesonFlags = [
-    # Enables all features, so that we know when new dependencies are necessary.
-    "-Dauto_features=enabled"
+  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;
+  };
 }