mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-20 12:42:24 +00:00
added gstreamer gnonlin package
svn path=/nixpkgs/trunk/; revision=13550
This commit is contained in:
parent
84db2ea357
commit
677812de8f
|
@ -14,4 +14,8 @@ rec {
|
|||
gstFfmpeg = import ./gst-ffmpeg {
|
||||
inherit fetchurl stdenv pkgconfig gstPluginsBase bzip2;
|
||||
};
|
||||
|
||||
gnonlin = import ./gnonlin {
|
||||
inherit fetchurl stdenv pkgconfig gstreamer gstPluginsBase;
|
||||
};
|
||||
}
|
||||
|
|
21
pkgs/development/libraries/gstreamer/gnonlin/default.nix
Normal file
21
pkgs/development/libraries/gstreamer/gnonlin/default.nix
Normal file
|
@ -0,0 +1,21 @@
|
|||
args: with args;
|
||||
|
||||
let version = "0.10.10"; in
|
||||
stdenv.mkDerivation rec {
|
||||
name = "gnonlin-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://gstreamer.freedesktop.org/src/gnonlin/gnonlin-${version}.tar.gz";
|
||||
sha256 = "041in2y0x3755hw29rhnyhsh216v2fl1q1p12m9faxiv2r52x83y";
|
||||
};
|
||||
|
||||
buildInputs = [ gstPluginsBase gstreamer pkgconfig ];
|
||||
|
||||
configureFlags = "--enable-shared --disable-static";
|
||||
|
||||
meta = {
|
||||
homepage = "http://gstreamer.freedesktop.org/modules/gnonlin.html";
|
||||
description = "http://gstreamer.freedesktop.org/modules/gnonlin.html";
|
||||
license = "GPLv2+";
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue