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

22 lines
560 B
Nix
Raw Normal View History

2015-03-29 20:26:09 +00:00
{ 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 = https://sourceforge.net/projects/lsdvd/;
description = "Display information about audio, video, and subtitle tracks on a DVD";
platforms = stdenv.lib.platforms.linux;
2015-03-29 20:26:09 +00:00
};
}