ce46e7ff63
I updated gstreamer too, because this phonon was not finding a header file. As that did not fix much the phonon build, I helped the generic builder with NIX_CFLAGS_COMPILER for phonon to find the proper header files. Either the phonon cmake scripts don't find properly the gstreamer plugins header file, or we install gstreamer in a strange way. svn path=/nixpkgs/trunk/; revision=19974
22 lines
552 B
Nix
22 lines
552 B
Nix
args: with args;
|
|
|
|
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+";
|
|
};
|
|
}
|