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