mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-05 20:11:43 +03:00
05d6d77c8e
* Updated libdvdnav/libdvdread to latest versions * Removed libdvdnav patches since they have been incorporated into the latest release * Added `--enable-dvdnav` configure flag to VLC to ensure that if this happens again VLC will fail to build
24 lines
674 B
Nix
24 lines
674 B
Nix
{stdenv, fetchurl, pkgconfig, libdvdread}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libdvdnav";
|
|
version = "5.0.3";
|
|
|
|
src = fetchurl {
|
|
url = "http://download.videolan.org/pub/videolan/${name}/${version}/${name}-${version}.tar.bz2";
|
|
sha256 = "5097023e3d2b36944c763f1df707ee06b19dc639b2b68fb30113a5f2cbf60b6d";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [libdvdread];
|
|
|
|
meta = {
|
|
homepage = http://dvdnav.mplayerhq.hu/;
|
|
description = "A library that implements DVD navigation features such as DVD menus";
|
|
license = stdenv.lib.licenses.gpl2;
|
|
maintainers = [ stdenv.lib.maintainers.wmertens ];
|
|
};
|
|
|
|
passthru = { inherit libdvdread; };
|
|
}
|