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