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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
655 B
Nix
Raw Normal View History

2021-01-15 09:19:50 +00:00
{ lib, stdenv, fetchurl, libdvdread, libdvdcss }:
stdenv.mkDerivation rec {
2021-08-12 20:47:47 +01:00
pname = "vobcopy";
version = "1.2.0";
src = fetchurl {
2021-08-12 20:47:47 +01:00
url = "http://www.vobcopy.org/download/vobcopy-${version}.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;
};
}