Merge recent master into p/stdenv
Merged just before the pypi update, as it seems to cause problems on Hydra.
This commit is contained in:
@@ -1,26 +1,34 @@
|
||||
{stdenv, fetchurl, cups, zlib, libjpeg, libusb, pythonPackages, saneBackends, dbus
|
||||
, pkgconfig, polkit, qtSupport ? true, qt4, pythonDBus, pyqt4, net_snmp
|
||||
{ stdenv, fetchurl, automake, pkgconfig
|
||||
, cups, zlib, libjpeg, libusb1, pythonPackages, saneBackends, dbus
|
||||
, polkit, qtSupport ? true, qt4, pythonDBus, pyqt4, net_snmp
|
||||
, withPlugin ? false
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "hplip-3.11.1";
|
||||
name = "hplip-3.14.4";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/hplip/${name}.tar.gz";
|
||||
sha256 = "0y68s4xm5d0kv7p5j41qq0xglp4vdbjwbrjs89b4a21wwn69hp9g";
|
||||
sha256 = "1j8h44f8igl95wqypj4rk9awcw513hlps980jmcnkx60xghc4l6f";
|
||||
};
|
||||
|
||||
#preBuild=''
|
||||
# makeFlags="V=1 DISABLE_JBIG=1 CUPSFILTER=$out/lib/cups/filter CUPSPPD=$out/share/cups/model"
|
||||
#'';
|
||||
plugin = fetchurl {
|
||||
url = "http://www.openprinting.org/download/printdriver/auxfiles/HP/plugins/${name}-plugin.run";
|
||||
sha256 = "0k1vpmy7babbm3c5v4dcbhq0jgyr8as722nylfs8zx0dy7kr8874";
|
||||
};
|
||||
|
||||
hplip_state = ./hplip.state;
|
||||
|
||||
prePatch = ''
|
||||
sed -i s,/etc/sane.d,$out/etc/sane.d/, Makefile.in
|
||||
sed -i s,/etc/hp/,$out/etc/hp/, base/g.py
|
||||
# HPLIP hardcodes absolute paths everywhere. Nuke from orbit.
|
||||
find . -type f -exec sed -i s,/etc/hp,$out/etc/hp, {} \;
|
||||
find . -type f -exec sed -i s,/etc/sane.d,$out/etc/sane.d, {} \;
|
||||
find . -type f -exec sed -i s,/usr/include/libusb-1.0,${libusb1}/include/libusb-1.0, {} \;
|
||||
find . -type f -exec sed -i s,/usr/share/hal/fdi/preprobe/10osvendor,$out/share/hal/fdi/preprobe/10osvendor, {} \;
|
||||
find . -type f -exec sed -i s,/usr/lib/systemd/system,$out/lib/systemd/system, {} \;
|
||||
find . -type f -exec sed -i s,/var/lib/hp,$out/var/lib/hp, {} \;
|
||||
'';
|
||||
|
||||
# --disable-network-build Until we have snmp
|
||||
|
||||
preConfigure = ''
|
||||
export configureFlags="$configureFlags
|
||||
--with-cupsfilterdir=$out/lib/cups/filter
|
||||
@@ -33,23 +41,66 @@ stdenv.mkDerivation rec {
|
||||
|
||||
export makeFlags="
|
||||
halpredir=$out/share/hal/fdi/preprobe/10osvendor
|
||||
hplip_statedir=$out/var
|
||||
rulesdir=$out/etc/udev/rules.d
|
||||
policykit_dir=$out/share/polkit-1/actions
|
||||
policykit_dbus_etcdir=$out/etc/dbus-1/system.d
|
||||
policykit_dbus_sharedir=$out/share/dbus-1/system-services
|
||||
hplip_confdir=$out/etc/hp
|
||||
hplip_statedir=$out/var/lib/hp
|
||||
";
|
||||
'';
|
||||
|
||||
postInstall = ''
|
||||
postInstall =
|
||||
''
|
||||
wrapPythonPrograms
|
||||
'';
|
||||
''
|
||||
+ (stdenv.lib.optionalString withPlugin
|
||||
(let hplip_arch =
|
||||
if builtins.currentSystem == "i686-linux"
|
||||
then "x86_32"
|
||||
else if builtins.currentSystem == "x86_64-linux"
|
||||
then "x86_64"
|
||||
else abort "Platform must be i686-linux or x86_64-linux!";
|
||||
in
|
||||
''
|
||||
sh ${plugin} --noexec --keep
|
||||
cd plugin_tmp
|
||||
|
||||
cp plugin.spec $out/share/hplip/
|
||||
|
||||
mkdir -p $out/share/hplip/data/firmware
|
||||
cp *.fw.gz $out/share/hplip/data/firmware
|
||||
|
||||
mkdir -p $out/share/hplip/data/plugins
|
||||
cp license.txt $out/share/hplip/data/plugins
|
||||
|
||||
mkdir -p $out/share/hplip/prnt/plugins
|
||||
for plugin in lj hbpl1; do
|
||||
cp $plugin-${hplip_arch}.so $out/share/hplip/prnt/plugins
|
||||
ln -s $out/share/hplip/prnt/plugins/$plugin-${hplip_arch}.so \
|
||||
$out/share/hplip/prnt/plugins/$plugin.so
|
||||
done
|
||||
|
||||
mkdir -p $out/share/hplip/scan/plugins
|
||||
for plugin in bb_soap bb_marvell bb_soapht fax_marvell; do
|
||||
cp $plugin-${hplip_arch}.so $out/share/hplip/scan/plugins
|
||||
ln -s $out/share/hplip/scan/plugins/$plugin-${hplip_arch}.so \
|
||||
$out/share/hplip/scan/plugins/$plugin.so
|
||||
done
|
||||
|
||||
mkdir -p $out/var/lib/hp
|
||||
cp ${hplip_state} $out/var/lib/hp/hplip.state
|
||||
|
||||
mkdir -p $out/etc/sane.d/dll.d
|
||||
mv $out/etc/sane.d/dll.conf $out/etc/sane.d/dll.d/hpaio.conf
|
||||
|
||||
rm $out/etc/udev/rules.d/56-hpmud.rules
|
||||
''));
|
||||
|
||||
buildInputs = [
|
||||
libjpeg
|
||||
cups
|
||||
libusb
|
||||
libusb1
|
||||
pythonPackages.python
|
||||
pythonPackages.wrapPython
|
||||
saneBackends
|
||||
@@ -59,15 +110,18 @@ stdenv.mkDerivation rec {
|
||||
] ++ stdenv.lib.optional qtSupport qt4;
|
||||
|
||||
pythonPath = with pythonPackages; [
|
||||
pillow
|
||||
pythonDBus
|
||||
pygobject
|
||||
recursivePthLoader
|
||||
reportlab
|
||||
] ++ stdenv.lib.optional qtSupport pyqt4;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Print, scan and fax HP drivers for Linux";
|
||||
homepage = http://hplipopensource.com/;
|
||||
license = "free"; # MIT/BSD/GPL
|
||||
license = if withPlugin then licenses.unfree else "free"; # MIT/BSD/GPL
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ ttuegel ];
|
||||
};
|
||||
}
|
||||
|
||||
@@ -0,0 +1,4 @@
|
||||
[plugin]
|
||||
installed=1
|
||||
eula=1
|
||||
version=3.14.4
|
||||
@@ -0,0 +1,28 @@
|
||||
{ stdenv, fetchurl, scons, libX11, pkgconfig
|
||||
, libusb1, boost, glib, dbus_glib }:
|
||||
|
||||
let
|
||||
version = "0.8.5";
|
||||
in stdenv.mkDerivation {
|
||||
name = "xboxdrv-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/Grumbel/xboxdrv/archive/v${version}.tar.gz";
|
||||
sha256 = "0xg2dhfsk3i693rgwr1pr532b3hk3zmjxlx55g6bplslr94bibi2";
|
||||
};
|
||||
|
||||
patchPhase = ''
|
||||
substituteInPlace Makefile --replace /usr/local "$out"
|
||||
'';
|
||||
|
||||
buildInputs = [ scons libX11 pkgconfig libusb1 boost glib dbus_glib];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = "http://pingus.seul.org/~grumbel/xboxdrv/";
|
||||
description =
|
||||
"Xbox/Xbox360 (and more) gamepad driver for Linux that works in userspace.";
|
||||
license = licenses.gpl3Plus;
|
||||
maintainers = [ maintainers.fuuzetsu ];
|
||||
};
|
||||
|
||||
}
|
||||
@@ -0,0 +1,22 @@
|
||||
From 48f6bf352154511d5acddfe44dd241c6a9ed92d7 Mon Sep 17 00:00:00 2001
|
||||
From: Bhavin <bhavin192@users.noreply.github.com>
|
||||
Date: Tue, 6 May 2014 22:44:58 +0530
|
||||
Subject: [PATCH] Update vaersion to 0.9.8
|
||||
|
||||
It was 0.9.6 :(
|
||||
---
|
||||
Qt/Settings.pri | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/Qt/Settings.pri b/Qt/Settings.pri
|
||||
index 8b4c1d7..67949f2 100644
|
||||
--- a/Qt/Settings.pri
|
||||
+++ b/Qt/Settings.pri
|
||||
@@ -1,4 +1,4 @@
|
||||
-VERSION = 0.9.6
|
||||
+VERSION = 0.9.8
|
||||
DEFINES += USING_QT_UI USE_FFMPEG
|
||||
unix:!qnx:!symbian:!mac: CONFIG += linux
|
||||
maemo5|contains(MEEGO_EDITION,harmattan): CONFIG += maemo
|
||||
--
|
||||
1.9.3
|
||||
@@ -0,0 +1,34 @@
|
||||
{ stdenv, fetchgit, zlib, libpng, qt4, pkgconfig
|
||||
, withGamepads ? true, SDL # SDL is used for gamepad functionality
|
||||
}:
|
||||
|
||||
let
|
||||
version = "0.9.8";
|
||||
fstat = x: fn: "-D" + fn + "=" + (if x then "ON" else "OFF");
|
||||
in stdenv.mkDerivation {
|
||||
name = "PPSSPP-${version}";
|
||||
|
||||
src = fetchgit {
|
||||
url = "https://github.com/hrydgard/ppsspp.git";
|
||||
sha256 = "11sqhb2m3502dzbizahh1w2dl7jv3fipwxyrmryj8fyaqqw0i36q";
|
||||
rev = "cbc46be3f91cb8558fbb4b175b14e8e16cbf0243";
|
||||
fetchSubmodules = true;
|
||||
};
|
||||
|
||||
# Upstream forgot to bump a version in one file.
|
||||
patches = [ ./bump-version-to-0.9.8.patch ];
|
||||
|
||||
buildInputs = [ zlib libpng pkgconfig qt4 ]
|
||||
++ (if withGamepads then [ SDL ] else [ ]);
|
||||
|
||||
configurePhase = "cd Qt && qmake PPSSPPQt.pro";
|
||||
installPhase = "mkdir -p $out/bin && cp PPSSPPQt $out/bin";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = "http://www.ppsspp.org/";
|
||||
description = "A PSP emulator, the Qt4 version.";
|
||||
license = licenses.gpl2Plus;
|
||||
maintainers = [ maintainers.fuuzetsu ];
|
||||
platforms = platforms.linux ++ platforms.darwin ++ platforms.cygwin;
|
||||
};
|
||||
}
|
||||
@@ -7,12 +7,12 @@ assert stdenv.isLinux;
|
||||
assert stdenv.gcc.gcc != null;
|
||||
|
||||
let
|
||||
version = "1.7.14";
|
||||
version = "1.7.19";
|
||||
name = "wine-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/wine/${name}.tar.bz2";
|
||||
sha256 = "029y4vsjz2jxy31g5nylpl7wm5qhw37dsbx4f0za6swk51z97w9d";
|
||||
sha256 = "1wigncw7xl6ni6kjmhmbzffhf0pav22b50aql93wz7h2r409psn5";
|
||||
};
|
||||
|
||||
gecko = fetchurl {
|
||||
|
||||
Reference in New Issue
Block a user