cups-idprt-sp900: init at 1.4.0
This commit is contained in:
parent
e173852abf
commit
5b479c99b3
61
pkgs/by-name/cu/cups-idprt-sp900/package.nix
Normal file
61
pkgs/by-name/cu/cups-idprt-sp900/package.nix
Normal file
@ -0,0 +1,61 @@
|
|||||||
|
{
|
||||||
|
stdenvNoCC,
|
||||||
|
lib,
|
||||||
|
fetchurl,
|
||||||
|
autoPatchelfHook,
|
||||||
|
cups,
|
||||||
|
e2fsprogs,
|
||||||
|
krb5,
|
||||||
|
libxcrypt-legacy,
|
||||||
|
unzip,
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenvNoCC.mkDerivation (finalAttrs: {
|
||||||
|
pname = "cups-idprt-sp900";
|
||||||
|
version = "1.4.0";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
name = "idprt_sp900_printer_linux_driver.zip";
|
||||||
|
url = "https://www.idprt.com/prt_v2/files/down_file/id/176/fid/498.html"; # NOTE: This is NOT an HTML page, but a ZIP file
|
||||||
|
hash = "sha256-+YVQTrqpi16xX+d/ulMtffpA9X7hwtWRiS/mIAw13n8=";
|
||||||
|
};
|
||||||
|
sourceRoot = "idprt_sp900_printer_linux_driver_v${finalAttrs.version}/idprt_sp900_printer_linux_driver_v${finalAttrs.version}"; # >:|
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
cups
|
||||||
|
e2fsprogs
|
||||||
|
krb5
|
||||||
|
libxcrypt-legacy
|
||||||
|
];
|
||||||
|
nativeBuildInputs = [
|
||||||
|
autoPatchelfHook
|
||||||
|
unzip
|
||||||
|
];
|
||||||
|
|
||||||
|
installPhase =
|
||||||
|
let
|
||||||
|
arch = builtins.getAttr stdenvNoCC.hostPlatform.system {
|
||||||
|
x86_64-linux = "x64";
|
||||||
|
x86-linux = "x86";
|
||||||
|
};
|
||||||
|
in
|
||||||
|
''
|
||||||
|
runHook preInstall
|
||||||
|
mkdir -p $out/share/cups/model $out/lib/cups/filter
|
||||||
|
cp -r filter/${arch}/. $out/lib/cups/filter
|
||||||
|
cp -r ppd/. $out/share/cups/model
|
||||||
|
chmod +x $out/lib/cups/filter/*
|
||||||
|
runHook postInstall
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "CUPS driver for the iDPRT SP900";
|
||||||
|
platforms = [
|
||||||
|
"x86_64-linux"
|
||||||
|
"x86-linux"
|
||||||
|
];
|
||||||
|
license = lib.licenses.unfree;
|
||||||
|
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
|
||||||
|
maintainers = with lib.maintainers; [ pandapip1 ];
|
||||||
|
};
|
||||||
|
})
|
Loading…
Reference in New Issue
Block a user