Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at netboot-syslinux-multiplatform 20 lines 584 B view raw
1{ lib, stdenv, fetchurl, libdvdread, pkg-config }: 2 3stdenv.mkDerivation rec { 4 pname = "lsdvd"; 5 version = "0.17"; 6 src = fetchurl { 7 url = "mirror://sourceforge/lsdvd/lsdvd-${version}.tar.gz"; 8 sha256 = "1274d54jgca1prx106iyir7200aflr70bnb1kawndlmcckcmnb3x"; 9 }; 10 11 buildInputs = [ libdvdread ]; 12 nativeBuildInputs = [ pkg-config ]; 13 14 meta = with lib; { 15 homepage = "https://sourceforge.net/projects/lsdvd/"; 16 description = "Display information about audio, video, and subtitle tracks on a DVD"; 17 license = licenses.gpl2; 18 platforms = platforms.linux; 19 }; 20}