1{ lib, stdenv, fetchurl, autoreconfHook, }:
2
3stdenv.mkDerivation rec {
4 pname = "libudfread";
5 version = "1.1.2";
6
7 src = fetchurl {
8 url =
9 "https://code.videolan.org/videolan/${pname}/-/archive/${version}/${pname}-${version}.tar.gz";
10 sha256 = "1idsfxff1x264n8jd7077qrd61rycsd09fwmc4ar7l4qmhk6gw9b";
11 };
12
13 nativeBuildInputs = [ autoreconfHook ];
14
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 };
22}