depot/third_party/nixpkgs/pkgs/development/libraries/gstreamer/validate/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

43 lines
808 B
Nix

{ 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;
};
}