forked from mirrors/nixpkgs
Merge pull request #158132 from deinferno/pantum-driver
pantum-driver: init at 1.1.84
This commit is contained in:
commit
556eb21b30
52
pkgs/misc/drivers/pantum-driver/default.nix
Normal file
52
pkgs/misc/drivers/pantum-driver/default.nix
Normal file
|
@ -0,0 +1,52 @@
|
|||
{ lib
|
||||
, stdenv
|
||||
, fetchzip
|
||||
, libusb1
|
||||
, cups
|
||||
, dpkg
|
||||
, libjpeg8
|
||||
, makeWrapper
|
||||
, autoPatchelfHook
|
||||
, enablePtqpdf ? false # Pantum's version of qpdf
|
||||
}:
|
||||
|
||||
let
|
||||
architecture = {
|
||||
i686-linux = "i386";
|
||||
x86_64-linux = "amd64";
|
||||
}.${stdenv.hostPlatform.system} or (throw "unsupported system ${stdenv.hostPlatform.system}");
|
||||
in
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "pantum-driver";
|
||||
version = "1.1.84";
|
||||
|
||||
src = fetchzip {
|
||||
url = "https://drivers.pantum.com/Pantum_Ubuntu_Driver_V${version}_1.zip";
|
||||
sha256 = "sha256-UJzYBsGj/TMhQoMourx7UPGBpN0MPi4pEN8m1sXLw/g=";
|
||||
};
|
||||
|
||||
buildInputs = [ libusb1 libjpeg8 cups ];
|
||||
nativeBuildInputs = [ dpkg autoPatchelfHook ];
|
||||
|
||||
installPhase = ''
|
||||
dpkg-deb -x ./Resources/pantum_${version}-1_${architecture}.deb .
|
||||
|
||||
mkdir -p $out $out/lib
|
||||
cp -r etc $out/
|
||||
cp -r usr/lib/cups $out/lib/
|
||||
cp -r usr/local/lib/* $out/lib/
|
||||
cp -r usr/share $out/
|
||||
cp Resources/locale/en_US.UTF-8/* $out/share/doc/pantum/
|
||||
'' + lib.optionalString enablePtqpdf ''
|
||||
cp -r opt/pantum/* $out/
|
||||
ln -s $out/lib/libqpdf.so* $out/lib/libqpdf.so
|
||||
ln -s $out/lib/libqpdf.so $out/lib/libqpdf.so.21
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "Pantum universal driver";
|
||||
homepage = "https://global.pantum.com/";
|
||||
license = lib.licenses.unfree;
|
||||
platforms = [ "i686-linux" "x86_64-linux" ];
|
||||
};
|
||||
}
|
|
@ -9428,6 +9428,10 @@ with pkgs;
|
|||
|
||||
poretools = callPackage ../applications/science/biology/poretools { };
|
||||
|
||||
pantum-driver = callPackage ../misc/drivers/pantum-driver {
|
||||
libjpeg8 = libjpeg.override { enableJpeg8 = true; };
|
||||
};
|
||||
|
||||
postscript-lexmark = callPackage ../misc/drivers/postscript-lexmark { };
|
||||
|
||||
povray = callPackage ../tools/graphics/povray {
|
||||
|
|
Loading…
Reference in a new issue