nixpkgs/pkgs/applications/video/dvdbackup/default.nix

22 lines
627 B
Nix
Raw Normal View History

2016-03-25 03:05:04 +00:00
{ stdenv, fetchurl, libdvdread, libdvdcss, dvdauthor }:
stdenv.mkDerivation rec {
version = "0.4.2";
pname = "dvdbackup";
2016-03-25 03:05:04 +00:00
src = fetchurl {
url = "mirror://sourceforge/dvdbackup/${pname}-${version}.tar.xz";
2016-03-25 03:05:04 +00:00
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;
2016-03-25 03:05:04 +00:00
};
}