mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-20 12:42:24 +00:00
dvdbackup: init at 0.4.2
This commit is contained in:
parent
9dc6db5cc5
commit
cdca9d64b4
|
@ -60,6 +60,7 @@
|
|||
bodil = "Bodil Stokke <nix@bodil.org>";
|
||||
boothead = "Ben Ford <ben@perurbis.com>";
|
||||
bosu = "Boris Sukholitko <boriss@gmail.com>";
|
||||
bradediger = "Brad Ediger <brad@bradediger.com>";
|
||||
bramd = "Bram Duvigneau <bram@bramd.nl>";
|
||||
bstrik = "Berno Strik <dutchman55@gmx.com>";
|
||||
bzizou = "Bruno Bzeznik <Bruno@bzizou.net>";
|
||||
|
|
20
pkgs/applications/video/dvdbackup/default.nix
Normal file
20
pkgs/applications/video/dvdbackup/default.nix
Normal file
|
@ -0,0 +1,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 ];
|
||||
};
|
||||
}
|
|
@ -11818,6 +11818,8 @@ in
|
|||
|
||||
dvdauthor = callPackage ../applications/video/dvdauthor { };
|
||||
|
||||
dvdbackup = callPackage ../applications/video/dvdbackup { };
|
||||
|
||||
dvd-slideshow = callPackage ../applications/video/dvd-slideshow { };
|
||||
|
||||
dwb-unwrapped = callPackage ../applications/networking/browsers/dwb { dconf = gnome3.dconf; };
|
||||
|
|
Loading…
Reference in a new issue