depot/third_party/nixpkgs/pkgs/tools/cd-dvd/lsdvd/default.nix
Default email 504525a148 Project import generated by Copybara.
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
2024-01-02 12:29:13 +01:00

21 lines
611 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.gpl2;
platforms = platforms.linux;
mainProgram = "lsdvd";
};
}