mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
gst-validate: init at 1.6.0
pitivi-0.95 requires this. (I added iyzsong as maintainer, in line with the other gstreamer packages.)
This commit is contained in:
parent
84bc6d64ba
commit
b2cad165bb
@ -20,4 +20,6 @@ rec {
|
||||
gst-editing-services = callPackage ./ges { inherit gnonlin; };
|
||||
|
||||
gst-vaapi = callPackage ./vaapi { inherit gst-plugins-base gstreamer gst-plugins-bad; };
|
||||
|
||||
gst-validate = callPackage ./validate { inherit gst-plugins-base; };
|
||||
}
|
||||
|
33
pkgs/development/libraries/gstreamer/validate/default.nix
Normal file
33
pkgs/development/libraries/gstreamer/validate/default.nix
Normal file
@ -0,0 +1,33 @@
|
||||
{ stdenv, fetchurl, pkgconfig, gstreamer, gst-plugins-base
|
||||
, python, gobjectIntrospection
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "gst-validate-1.6.0";
|
||||
|
||||
meta = {
|
||||
description = "Integration testing infrastructure for the GStreamer framework";
|
||||
homepage = "http://gstreamer.freedesktop.org";
|
||||
license = stdenv.lib.licenses.lgpl2Plus;
|
||||
platforms = stdenv.lib.platforms.unix;
|
||||
maintainers = with stdenv.lib.maintainers; [ iyzsong ];
|
||||
};
|
||||
|
||||
src = fetchurl {
|
||||
url = "${meta.homepage}/src/gst-validate/${name}.tar.xz";
|
||||
sha256 = "1vmg5mh068zrvhgrjsbnb7y4k632akyhm8ql0g196cinnp3zibiv";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
pkgconfig gobjectIntrospection
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
python
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [ gstreamer gst-plugins-base ];
|
||||
|
||||
enableParallelBuilding = true;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user