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

23 lines
628 B
Nix
Raw Normal View History

2021-01-15 09:19:50 +00:00
{ lib, stdenv, fetchurl, libdvdread, libdvdcss }:
stdenv.mkDerivation rec {
name = "vobcopy-1.2.0";
src = fetchurl {
url = "http://www.vobcopy.org/download/${name}.tar.bz2";
sha256 = "01l1yihbd73srzghzzx5dgfg3yfb5kml5dix52mq0snhjp8h89c9";
};
buildInputs = [libdvdread libdvdcss];
2019-10-29 22:21:22 +00:00
makeFlags = [ "DESTDIR=$(out)" "PREFIX=/" ];
meta = {
description = "Copies DVD .vob files to harddisk, decrypting them on the way";
homepage = "http://vobcopy.org/projects/c/c.shtml";
2021-01-15 09:19:50 +00:00
license = lib.licenses.gpl2;
2021-01-15 09:19:50 +00:00
maintainers = [ lib.maintainers.bluescreen303 ];
platforms = lib.platforms.all;
};
}