python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / libudfread / default.nix
blobd4f9a0d06b462e6e966569559f4a35d7b20def0a
1 { lib, stdenv, fetchurl, autoreconfHook, }:
3 stdenv.mkDerivation rec {
4   pname = "libudfread";
5   version = "1.1.2";
7   src = fetchurl {
8     url =
9       "https://code.videolan.org/videolan/${pname}/-/archive/${version}/${pname}-${version}.tar.gz";
10     sha256 = "1idsfxff1x264n8jd7077qrd61rycsd09fwmc4ar7l4qmhk6gw9b";
11   };
13   nativeBuildInputs = [ autoreconfHook ];
15   meta = with lib; {
16     description = "UDF reader";
17     homepage = "https://code.videolan.org/videolan/libudfread";
18     license = licenses.lgpl21Plus;
19     maintainers = with maintainers; [ chkno ];
20     platforms = platforms.all;
21   };