9846fbf06b
Semi-automatic update generated by ryantm/nix-update tools. These checks were done: - built on NixOS /tmp/tmp.5t3QSH6Esb /home/ryantm/.cache/nixpkgs /home/ryantm/.cache/nixpkgs - Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.) - found 6.0.0 with grep in /nix/store/9hclm5126babak424wlc0bflzp5w8wxg-libdvdnav-6.0.0 - directory tree listing: gist.github.com/ac1677320d622ed0b03422144cbbc5e4
25 lines
690 B
Nix
25 lines
690 B
Nix
{stdenv, fetchurl, pkgconfig, libdvdread}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libdvdnav-${version}";
|
|
version = "6.0.0";
|
|
|
|
src = fetchurl {
|
|
url = "http://get.videolan.org/libdvdnav/${version}/${name}.tar.bz2";
|
|
sha256 = "062njcksmpgw9yv3737qkf93r2pzhaxi9szqjabpa8d010dp38ph";
|
|
};
|
|
|
|
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 ];
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
|
|
passthru = { inherit libdvdread; };
|
|
}
|