2017-02-26 12:25:29 -08:00
|
|
|
{ stdenv, fetchurl, pkgconfig, gst-plugins-base, gstreamer }:
|
2008-12-02 04:27:44 -08:00
|
|
|
|
2009-04-21 16:18:09 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2013-12-11 00:23:06 -08:00
|
|
|
name = "gnonlin-0.10.17";
|
2008-12-02 04:27:44 -08:00
|
|
|
|
2009-04-21 16:18:09 -07:00
|
|
|
src = fetchurl {
|
2009-09-30 05:45:15 -07:00
|
|
|
urls = [
|
2017-08-17 13:06:19 -07:00
|
|
|
"https://gstreamer.freedesktop.org/src/gnonlin/${name}.tar.bz2"
|
2010-09-01 01:36:24 -07:00
|
|
|
"mirror://gentoo/distfiles/${name}.tar.bz2"
|
2009-09-30 05:45:15 -07:00
|
|
|
];
|
2013-12-11 00:23:06 -08:00
|
|
|
sha256 = "0dc9kvr6i7sh91cyhzlbx2bchwg84rfa4679ccppzjf0y65dv8p4";
|
2009-04-21 16:18:09 -07:00
|
|
|
};
|
2008-12-02 04:27:44 -08:00
|
|
|
|
2017-09-05 14:26:13 -07:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ gst-plugins-base gstreamer ];
|
2008-12-02 04:27:44 -08:00
|
|
|
|
2009-04-21 16:18:09 -07:00
|
|
|
meta = {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://gstreamer.freedesktop.org/modules/gnonlin.html";
|
2014-08-24 07:21:08 -07:00
|
|
|
description = "Gstreamer Non-Linear Multimedia Editing Plugins";
|
2014-06-18 21:19:00 -07:00
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
2016-08-02 10:50:55 -07:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2009-04-21 16:18:09 -07:00
|
|
|
};
|
|
|
|
}
|