Add some buildinputs to dell driver
This commit is contained in:
@ -3,6 +3,8 @@
|
|||||||
stdenv,
|
stdenv,
|
||||||
fetchurl,
|
fetchurl,
|
||||||
autoPatchelfHook,
|
autoPatchelfHook,
|
||||||
|
cups,
|
||||||
|
libusb1
|
||||||
}:
|
}:
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "B1160_B1160w_UnifiedLinuxDriver";
|
pname = "B1160_B1160w_UnifiedLinuxDriver";
|
||||||
@ -11,19 +13,23 @@ stdenv.mkDerivation rec {
|
|||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://dl.dell.com/FOLDER00947576M/1/${pname}_${version}.tar.gz";
|
url = "https://dl.dell.com/FOLDER00947576M/1/${pname}_${version}.tar.gz";
|
||||||
sha256 = "10b75a899ba7aff3b95158f6fc49f09d6eef670608480ee48c179337c5337375";
|
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.org/manual/nixpkgs/unstable/#setup-hook-autopatchelfhook
|
||||||
# https://nixos.wiki/wiki/Packaging/Binaries
|
# https://nixos.wiki/wiki/Packaging/Binaries
|
||||||
# https://unix.stackexchange.com/questions/522822/different-methods-to-run-a-non-nixos-executable-on-nixos/522823#522823
|
# 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 = [
|
nativeBuildInputs = [
|
||||||
# dpkg
|
cups
|
||||||
|
stdenv.cc.cc.lib
|
||||||
|
libusb1
|
||||||
autoPatchelfHook
|
autoPatchelfHook
|
||||||
];
|
];
|
||||||
|
|
||||||
unpackCmd = ''
|
unpackCmd = ''
|
||||||
mkdir -p root
|
mkdir -p root
|
||||||
tar xvf ${pname}_${version}.tar.gz --directory=root
|
tar xvf $curSrc --directory=root
|
||||||
'';
|
'';
|
||||||
|
|
||||||
# This is already built
|
# This is already built
|
||||||
@ -39,7 +45,7 @@ stdenv.mkDerivation rec {
|
|||||||
mkdir -p $out/sbin
|
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/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/usr/lib64/cups/* $out/cups/
|
||||||
cp -r cdroot/Linux/x86_64/at_root/opt/smfp-common/lib/* $out/lib/
|
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.";
|
description = "CUPS driver for the Dell B1160w printer.";
|
||||||
longDescription = "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";
|
homepage = "https://www.dell.com/support/home/de-de/drivers/driversdetails?driverid=1m4pc";
|
||||||
license = licenses.nonfree;
|
license = licenses.unfree;
|
||||||
platforms = ["x86_64-linux"];
|
platforms = ["x86_64-linux"];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user