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

stdenv.mkDerivation rec {
  version = "0.4.2";
  pname = "dvdbackup";

  src = fetchurl {
    url = "mirror://sourceforge/dvdbackup/${pname}-${version}.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 ];
    platforms = stdenv.lib.platforms.linux;
  };
}