nixpkgs/pkgs/development/libraries/gstreamer/gnonlin/default.nix
Eelco Dolstra 0fcf6e1f40 * Added xfce4-mixer. This requires gstreamer and gst-plugins-base.
* Allow gst-plugins-base to be built with a minimal set of dependencies
  (to prevent dependency bloat in Xfce).
* Updated gstreamer.

svn path=/nixpkgs/trunk/; revision=24207
2010-10-10 22:34:48 +00:00

22 lines
595 B
Nix

{ stdenv, fetchurl, pkgconfig, gstPluginsBase, gstreamer }:
stdenv.mkDerivation rec {
name = "gnonlin-0.10.14";
src = fetchurl {
urls = [
"http://gstreamer.freedesktop.org/src/gnonlin/${name}.tar.gz"
"mirror://gentoo/distfiles/${name}.tar.gz"
];
sha256 = "10gp3hz9a6hrrmdaa3i2ry79fyr402il1qr0vpsd6ayn02gcj93w";
};
buildInputs = [ gstPluginsBase gstreamer pkgconfig ];
meta = {
homepage = "http://gstreamer.freedesktop.org/modules/gnonlin.html";
description = "http://gstreamer.freedesktop.org/modules/gnonlin.html";
license = "GPLv2+";
};
}