summary refs log tree commit diff
path: root/pkgs/applications/video/dvdbackup/default.nix
blob: cb2a69b53ca97583cd13935cee002ab2b542e673 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ stdenv, fetchurl, libdvdread, libdvdcss, dvdauthor }:

stdenv.mkDerivation rec {
  version = "0.4.2";
  name = "dvdbackup-${version}";

  src = fetchurl {
    url = "mirror://sourceforge/dvdbackup/${name}.tar.xz";
    sha256 = "1rl3h7waqja8blmbpmwy01q9fgr5r0c32b8dy3pbf59bp3xmd37g";
  };

  buildInputs = [ libdvdread libdvdcss dvdauthor ];

  meta = {
    description = "A tool to rip video DVDs from the command line";
    homepage = http://dvdbackup.sourceforge.net/;
    license = stdenv.lib.licenses.gpl3Plus;
    maintainers = [ stdenv.lib.maintainers.bradediger ];
  };
}