1

Add some buildinputs to dell driver

This commit is contained in:
2023-04-16 16:53:02 +02:00
parent 02d1bf732f
commit 165cf8d6e3

View File

@ -3,6 +3,8 @@
stdenv,
fetchurl,
autoPatchelfHook,
cups,
libusb1
}:
stdenv.mkDerivation rec {
pname = "B1160_B1160w_UnifiedLinuxDriver";
@ -11,19 +13,23 @@ stdenv.mkDerivation rec {
src = fetchurl {
url = "https://dl.dell.com/FOLDER00947576M/1/${pname}_${version}.tar.gz";
sha256 = "10b75a899ba7aff3b95158f6fc49f09d6eef670608480ee48c179337c5337375";
curlOptsList = ["--user-agent" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:89.0) Gecko/20100101 Firefox/89.0"];
};
# https://nixos.org/manual/nixpkgs/unstable/#setup-hook-autopatchelfhook
# https://nixos.wiki/wiki/Packaging/Binaries
# https://unix.stackexchange.com/questions/522822/different-methods-to-run-a-non-nixos-executable-on-nixos/522823#522823
# TODO: This step does not work
nativeBuildInputs = [
# dpkg
cups
stdenv.cc.cc.lib
libusb1
autoPatchelfHook
];
unpackCmd = ''
mkdir -p root
tar xvf ${pname}_${version}.tar.gz --directory=root
tar xvf $curSrc --directory=root
'';
# This is already built
@ -39,7 +45,7 @@ stdenv.mkDerivation rec {
mkdir -p $out/sbin
cp -r cdroot/Linux/x86_64/at_root/usr/sbin/* $out/sbin/
cp -r cdroot/Linux/x86_64/at_root/usr/lib64/*.so $out/lib64/
cp -r cdroot/Linux/x86_64/at_root/usr/lib64/*.so.* $out/lib64/
cp -r cdroot/Linux/x86_64/at_root/usr/lib64/cups/* $out/cups/
cp -r cdroot/Linux/x86_64/at_root/opt/smfp-common/lib/* $out/lib/
@ -50,7 +56,7 @@ stdenv.mkDerivation rec {
description = "CUPS driver for the Dell B1160w printer.";
longDescription = "CUPS driver for the Dell B1160w printer.";
homepage = "https://www.dell.com/support/home/de-de/drivers/driversdetails?driverid=1m4pc";
license = licenses.nonfree;
license = licenses.unfree;
platforms = ["x86_64-linux"];
};
}