2012-03-14 12:35:35 -07: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 = [
|
2010-09-01 01:36:24 -07:00
|
|
|
"http://gstreamer.freedesktop.org/src/gnonlin/${name}.tar.bz2"
|
|
|
|
"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
|
|
|
|
2012-03-14 12:35:35 -07:00
|
|
|
buildInputs = [ gst_plugins_base gstreamer pkgconfig ];
|
2008-12-02 04:27:44 -08:00
|
|
|
|
2009-04-21 16:18:09 -07:00
|
|
|
meta = {
|
|
|
|
homepage = "http://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
|
|
|
};
|
|
|
|
}
|