nixpkgs/pkgs/development/libraries/gstreamer/gnonlin/default.nix
Yury G. Kudryashov 4d9fb0a594 Move gstreamer packages to top-level
This will make callPackage work with gst.
* Rename gstCamelCase to gst_with_underscores.
* Add compatibility attributes.

svn path=/nixpkgs/trunk/; revision=33078
2012-03-14 19:35:35 +00:00

22 lines
601 B
Nix

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