~ruther/guix-local

63182d1ac955d9d6ce486e0847fe1474af0f9e3a — Alexey Abramov 5 months ago 1e0eb9e
gnu: Add lsdvd.

* gnu/packages/video.scm (lsdvd): New variable.
1 files changed, 27 insertions(+), 0 deletions(-)

M gnu/packages/video.scm
M gnu/packages/video.scm => gnu/packages/video.scm +27 -0
@@ 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")