add gst-editing-services 1.2.0
This commit is contained in:
parent
7d3eb6307b
commit
c3ffcb1cfe
@ -16,4 +16,6 @@ rec {
|
|||||||
gst-python = callPackage ./python { inherit gst-plugins-base gstreamer; };
|
gst-python = callPackage ./python { inherit gst-plugins-base gstreamer; };
|
||||||
|
|
||||||
gnonlin = callPackage ./gnonlin { inherit gst-plugins-base; };
|
gnonlin = callPackage ./gnonlin { inherit gst-plugins-base; };
|
||||||
|
|
||||||
|
gst-editing-services = callPackage ./ges { inherit gnonlin; };
|
||||||
}
|
}
|
||||||
|
24
pkgs/development/libraries/gstreamer/ges/default.nix
Normal file
24
pkgs/development/libraries/gstreamer/ges/default.nix
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
{ stdenv, fetchurl, pkgconfig, python
|
||||||
|
, gnonlin, libxml2
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "gstreamer-editing-services-1.2.0";
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Library for creation of audio/video non-linear editors";
|
||||||
|
homepage = "http://gstreamer.freedesktop.org";
|
||||||
|
license = licenses.lgpl2Plus;
|
||||||
|
platforms = platforms.linux;
|
||||||
|
maintainers = with maintainers; [ iyzsong ];
|
||||||
|
};
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "${meta.homepage}/src/gstreamer-editing-services/${name}.tar.xz";
|
||||||
|
sha256 = "1n7nw8rqvwna9af55lggah44gdvfgld1igvgaya8glc37wpq89b0";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ pkgconfig python ];
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ gnonlin libxml2 ];
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user