From 63182d1ac955d9d6ce486e0847fe1474af0f9e3a Mon Sep 17 00:00:00 2001 From: Alexey Abramov Date: Tue, 23 Sep 2025 19:03:51 +0200 Subject: [PATCH] gnu: Add lsdvd. * gnu/packages/video.scm (lsdvd): New variable. --- gnu/packages/video.scm | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index 3107c428457dff9d3fc003e638d6cfcbc0419b65..80415b761afde2feff76fa5bae857f6308b9f460 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -3568,6 +3568,33 @@ authentication and descrambling (if an external libdvdcss library is installed).") (license license:gpl2+))) +(define-public lsdvd + (package + (name "lsdvd") + (version "0.17") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://git.code.sf.net/p/lsdvd/git") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1zsk4bwgw0ka44qymv52c5j9igajvdhdj8hlf07p35rpnbl2qzfm")))) + (native-inputs + (list autoconf + automake + pkg-config)) + (inputs (list libdvdread)) + (build-system gnu-build-system) + (home-page "https://sourceforge.net/projects/lsdvd/") + (synopsis "Console application that lists the contents of a DVD") + (description + "@command{lsdvd} provides output about the types of video, audio tracks +and subtitles. Output is available in a number of formats including human +readable, perl, ruby or xml.") + (license license:gpl2))) + (define-public dvdauthor (package (name "dvdauthor")