2021-01-17 03:51:22 +00:00
|
|
|
{ lib, stdenv, fetchurl, libdvdread, pkg-config }:
|
2015-03-29 20:26:09 +00:00
|
|
|
|
|
|
|
let
|
|
|
|
version = "0.17";
|
|
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
2019-08-13 21:52:01 +00:00
|
|
|
pname = "lsdvd";
|
|
|
|
inherit version;
|
2015-03-29 20:26:09 +00:00
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/lsdvd/lsdvd-${version}.tar.gz";
|
|
|
|
sha256 = "1274d54jgca1prx106iyir7200aflr70bnb1kawndlmcckcmnb3x";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ libdvdread ];
|
2021-01-17 03:51:22 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2015-03-29 20:26:09 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://sourceforge.net/projects/lsdvd/";
|
2017-12-05 22:20:11 +00:00
|
|
|
description = "Display information about audio, video, and subtitle tracks on a DVD";
|
2018-09-07 20:43:36 +00:00
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.linux;
|
2015-03-29 20:26:09 +00:00
|
|
|
};
|
|
|
|
}
|