summary refs log tree commit diff
path: root/pkgs/development/libraries/libudfread
diff options
context:
space:
mode:
authorScott Worley <scottworley@scottworley.com>2022-01-07 23:59:58 -0800
committerScott Worley <scottworley@scottworley.com>2022-01-07 23:59:58 -0800
commit14398f74ac8186cbaaad31852b024001a448e7c7 (patch)
tree8aebc3a8c57747f209c50f455802f448b2169ca3 /pkgs/development/libraries/libudfread
parentff377a78794d412a35245e05428c8f95fef3951f (diff)
downloadnixpkgs-14398f74ac8186cbaaad31852b024001a448e7c7.tar
nixpkgs-14398f74ac8186cbaaad31852b024001a448e7c7.tar.gz
nixpkgs-14398f74ac8186cbaaad31852b024001a448e7c7.tar.bz2
nixpkgs-14398f74ac8186cbaaad31852b024001a448e7c7.tar.lz
nixpkgs-14398f74ac8186cbaaad31852b024001a448e7c7.tar.xz
nixpkgs-14398f74ac8186cbaaad31852b024001a448e7c7.tar.zst
nixpkgs-14398f74ac8186cbaaad31852b024001a448e7c7.zip
libudfread: Init at 1.1.2
Diffstat (limited to 'pkgs/development/libraries/libudfread')
-rw-r--r--pkgs/development/libraries/libudfread/default.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/development/libraries/libudfread/default.nix b/pkgs/development/libraries/libudfread/default.nix
new file mode 100644
index 00000000000..d4f9a0d06b4
--- /dev/null
+++ b/pkgs/development/libraries/libudfread/default.nix
@@ -0,0 +1,22 @@
+{ lib, stdenv, fetchurl, autoreconfHook, }:
+
+stdenv.mkDerivation rec {
+  pname = "libudfread";
+  version = "1.1.2";
+
+  src = fetchurl {
+    url =
+      "https://code.videolan.org/videolan/${pname}/-/archive/${version}/${pname}-${version}.tar.gz";
+    sha256 = "1idsfxff1x264n8jd7077qrd61rycsd09fwmc4ar7l4qmhk6gw9b";
+  };
+
+  nativeBuildInputs = [ autoreconfHook ];
+
+  meta = with lib; {
+    description = "UDF reader";
+    homepage = "https://code.videolan.org/videolan/libudfread";
+    license = licenses.lgpl21Plus;
+    maintainers = with maintainers; [ chkno ];
+    platforms = platforms.all;
+  };
+}