add lsdvd-0.17

This commit is contained in:
Thomas Tuegel 2015-03-29 15:26:09 -05:00
parent 69874c27ec
commit a7d73f84bf
2 changed files with 22 additions and 0 deletions

View file

@ -0,0 +1,20 @@
{ stdenv, fetchurl, libdvdread, pkgconfig }:
let
version = "0.17";
in
stdenv.mkDerivation {
name = "lsdvd-${version}";
src = fetchurl {
url = "mirror://sourceforge/lsdvd/lsdvd-${version}.tar.gz";
sha256 = "1274d54jgca1prx106iyir7200aflr70bnb1kawndlmcckcmnb3x";
};
buildInputs = [ libdvdread ];
nativeBuildInputs = [ pkgconfig ];
meta = {
homepage = "http://sourceforge.net/projects/lsdvd/";
shortDescription = "Display information about audio, video, and subtitle tracks on a DVD";
};
}

View file

@ -1771,6 +1771,8 @@ let
logstash-forwarder = callPackage ../tools/misc/logstash-forwarder { };
lsdvd = callPackage ../tools/cd-dvd/lsdvd {};
kippo = callPackage ../servers/kippo { };
klavaro = callPackage ../games/klavaro {};