nixpkgs/pkgs/applications/video/dvdbackup/default.nix
Tuomas Tynkkynen 21f17d69f6 treewide: Add lots of meta.platforms
Build-tested on x86_64 Linux & Mac.
2016-08-02 21:42:43 +03:00

22 lines
625 B
Nix

{ 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 ];
platforms = stdenv.lib.platforms.linux;
};
}