mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
99 lines
2.9 KiB
Nix
99 lines
2.9 KiB
Nix
{ lib, stdenv, fetchurl, cups, libusb-compat-0_1, libxml2 }:
|
|
|
|
let
|
|
|
|
arch = if stdenv.hostPlatform.system == "x86_64-linux"
|
|
then "x86_64"
|
|
else "i386";
|
|
|
|
in stdenv.mkDerivation rec {
|
|
pname = "samsung-unified-linux-driver";
|
|
version = "1.00.37";
|
|
|
|
src = fetchurl {
|
|
sha256 = "0r66l9zp0p1qgakh4j08hynwsr4lsgq5yrpxyr0x4ldvl0z2b1bb";
|
|
url = "http://www.bchemnet.com/suldr/driver/UnifiedLinuxDriver-${version}.tar.gz";
|
|
};
|
|
|
|
buildInputs = [
|
|
cups
|
|
libusb-compat-0_1
|
|
libxml2
|
|
];
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/bin
|
|
cp -R ${arch}/{gettext,pstosecps,rastertospl,smfpnetdiscovery,usbresetter} $out/bin
|
|
|
|
mkdir -p $out/etc/sane.d/dll.d/
|
|
install -m644 noarch/etc/smfp.conf $out/etc/sane.d
|
|
echo smfp >> $out/etc/sane.d/dll.d/smfp-scanner.conf
|
|
|
|
mkdir -p $out/lib
|
|
install -m755 ${arch}/libscmssc.so* $out/lib
|
|
|
|
mkdir -p $out/lib/cups/backend
|
|
ln -s $out/bin/smfpnetdiscovery $out/lib/cups/backend
|
|
|
|
mkdir -p $out/lib/cups/filter
|
|
ln -s $out/bin/{pstosecps,rastertospl} $out/lib/cups/filter
|
|
ln -s $ghostscript/bin/gs $out/lib/cups/filter
|
|
|
|
mkdir -p $out/lib/sane
|
|
install -m755 ${arch}/libsane-smfp.so* $out/lib/sane
|
|
ln -s libsane-smfp.so.1.0.1 $out/lib/sane/libsane-smfp.so.1
|
|
ln -s libsane-smfp.so.1 $out/lib/sane/libsane-smfp.so
|
|
|
|
mkdir -p $out/lib/udev/rules.d
|
|
(
|
|
OEM_FILE=noarch/oem.conf
|
|
INSTALL_LOG_FILE=/dev/null
|
|
. noarch/scripting_utils
|
|
. noarch/package_utils
|
|
. noarch/scanner-script.pkg
|
|
fill_full_template noarch/etc/smfp.rules.in $out/lib/udev/rules.d/60_smfp_samsung.rules
|
|
chmod -x $out/lib/udev/rules.d/60_smfp_samsung.rules
|
|
)
|
|
|
|
mkdir -p $out/share
|
|
cp -R noarch/share/* $out/share
|
|
gzip -9 $out/share/ppd/*.ppd
|
|
rm -r $out/share/locale/*/*/install.mo
|
|
|
|
mkdir -p $out/share/cups
|
|
cd $out/share/cups
|
|
ln -s ../ppd .
|
|
ln -s ppd model
|
|
'';
|
|
|
|
preFixup = ''
|
|
for bin in "$out/bin/"*; do
|
|
patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" "$bin"
|
|
patchelf --set-rpath "$out/lib:${lib.getLib cups}/lib" "$bin"
|
|
done
|
|
|
|
patchelf --set-rpath "$out/lib:${lib.getLib cups}/lib" "$out/lib/libscmssc.so"
|
|
patchelf --set-rpath "$out/lib:${libxml2.out}/lib:${libusb-compat-0_1.out}/lib" "$out/lib/sane/libsane-smfp.so.1.0.1"
|
|
|
|
ln -s ${stdenv.cc.cc.lib}/lib/libstdc++.so.6 $out/lib/
|
|
'';
|
|
|
|
# all binaries are already stripped
|
|
dontStrip = true;
|
|
|
|
# we did this in prefixup already
|
|
dontPatchELF = true;
|
|
|
|
meta = with lib; {
|
|
description = "Unified Linux Driver for Samsung printers and scanners";
|
|
homepage = "http://www.bchemnet.com/suldr";
|
|
downloadPage = "http://www.bchemnet.com/suldr/driver/";
|
|
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
|
|
license = licenses.unfree;
|
|
|
|
# Tested on linux-x86_64. Might work on linux-i386.
|
|
# Probably won't work on anything else.
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|