Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / libraries / libdvdnav / 4.2.1.nix
blob0285ff22fe2f93fb85bfc0d7eca89aedc9dcf0e3
1 {lib, stdenv, fetchurl, pkg-config, libdvdread}:
3 stdenv.mkDerivation rec {
4   pname = "libdvdnav";
5   version = "4.2.1";
7   src = fetchurl {
8     url = "http://dvdnav.mplayerhq.hu/releases/libdvdnav-${version}.tar.xz";
9     sha256 = "7fca272ecc3241b6de41bbbf7ac9a303ba25cb9e0c82aa23901d3104887f2372";
10   };
12   nativeBuildInputs = [ pkg-config ];
13   buildInputs = [libdvdread];
15   configureScript = "./configure2"; # wtf?
17   preConfigure = ''
18     mkdir -p $out
19   '';
21   meta = {
22     homepage = "http://dvdnav.mplayerhq.hu/";
23     description = "A library that implements DVD navigation features such as DVD menus";
24     license = lib.licenses.gpl2;
25     maintainers = [ lib.maintainers.wmertens ];
26     platforms = lib.platforms.linux;
27   };
29   passthru = { inherit libdvdread; };