mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
21 lines
615 B
Nix
21 lines
615 B
Nix
{ lib, stdenv, fetchurl, libdvdread, pkg-config }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "lsdvd";
|
|
version = "0.17";
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/lsdvd/lsdvd-${version}.tar.gz";
|
|
sha256 = "1274d54jgca1prx106iyir7200aflr70bnb1kawndlmcckcmnb3x";
|
|
};
|
|
|
|
buildInputs = [ libdvdread ];
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://sourceforge.net/projects/lsdvd/";
|
|
description = "Display information about audio, video, and subtitle tracks on a DVD";
|
|
license = licenses.gpl2Only;
|
|
platforms = platforms.linux;
|
|
mainProgram = "lsdvd";
|
|
};
|
|
}
|