nixpkgs/pkgs/tools/cd-dvd/lsdvd/default.nix

24 lines
606 B
Nix
Raw Normal View History

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