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