Adding lxdvdrip (it builds, but I still don't know how to make it work)
svn path=/nixpkgs/trunk/; revision=23858
This commit is contained in:
parent
1ba317f3c6
commit
812420fab6
|
@ -0,0 +1,28 @@
|
|||
{ stdenv, fetchurl, libdvdread }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "lxdvdrip-1.76";
|
||||
|
||||
src = fetchurl {
|
||||
url = http://download.berlios.de/lxdvdrip/lxdvdrip-1.76.tgz;
|
||||
sha256 = "0vgslc7dapfrbgslnaicc8bggdccyrvcgjv1dwi19qswhh7jkzj6";
|
||||
};
|
||||
|
||||
prePatch = ''
|
||||
sed -i -e s,/usr/local,$out, -e s,/etc,$out/etc,g Makefile
|
||||
sed -i -e s,/usr/local,$out, buffer/Makefile
|
||||
makeFlags="$makeFlags PREFIX=$out"
|
||||
'';
|
||||
|
||||
preInstall = ''
|
||||
ensureDir $out/man/man1 $out/bin $out/share $out/etc
|
||||
'';
|
||||
|
||||
buildInputs = [ libdvdread ];
|
||||
|
||||
meta = {
|
||||
description = "Command line tool to make a copy from a video DVD for private use";
|
||||
homepage = http://lxdvdrip.berlios.de/;
|
||||
license = "GPLv2";
|
||||
};
|
||||
}
|
|
@ -5782,6 +5782,8 @@ let
|
|||
inherit (xlibs) libX11 libXau xproto libXt;
|
||||
};
|
||||
|
||||
lxdvdrip = callPackage ../applications/video/lxdvdrip { };
|
||||
|
||||
lynx = callPackage ../applications/networking/browsers/lynx { };
|
||||
|
||||
lyx = callPackage ../applications/misc/lyx {
|
||||
|
|
Loading…
Reference in New Issue