Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
69 lines
1.5 KiB
Nix
69 lines
1.5 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchsvn,
|
|
fetchurl,
|
|
cups,
|
|
cups-filters,
|
|
jbigkit,
|
|
zlib,
|
|
}:
|
|
|
|
let
|
|
|
|
color-profiles = stdenv.mkDerivation {
|
|
pname = "splix-color-profiles";
|
|
version = "unstable-2007-06-25";
|
|
|
|
src = fetchurl {
|
|
url = "http://splix.ap2c.org/samsung_cms.tar.bz2";
|
|
sha256 = "1156flics5m9m7a4hdmcc2nphbdyary6dfmbcrmsp9xb7ivsypdl";
|
|
};
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/share/cups/profiles/samsung
|
|
cp * $out/share/cups/profiles/samsung/
|
|
'';
|
|
};
|
|
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
pname = "splix-svn";
|
|
version = "315";
|
|
|
|
src = fetchsvn {
|
|
# We build this from svn, because splix hasn't been in released in several years
|
|
# although the community has been adding some new printer models.
|
|
url = "svn://svn.code.sf.net/p/splix/code/splix";
|
|
rev = version;
|
|
sha256 = "16wbm4xnz35ca3mw2iggf5f4jaxpyna718ia190ka6y4ah932jxl";
|
|
};
|
|
|
|
postPatch = ''
|
|
mv -v *.ppd ppd/
|
|
substituteInPlace src/pstoqpdl.cpp \
|
|
--replace "RASTERDIR \"/\" RASTERTOQPDL" "\"$out/lib/cups/filter/rastertoqpdl\"" \
|
|
--replace "RASTERDIR" "\"${cups-filters}/lib/cups/filter\"" \
|
|
'';
|
|
|
|
makeFlags = [
|
|
"CUPSFILTER=$(out)/lib/cups/filter"
|
|
"CUPSPPD=$(out)/share/cups/model"
|
|
"CUPSPROFILE=${color-profiles}/share/cups/profiles"
|
|
];
|
|
|
|
buildInputs = [
|
|
cups
|
|
zlib
|
|
jbigkit
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "CUPS drivers for SPL (Samsung Printer Language) printers";
|
|
homepage = "http://splix.ap2c.org";
|
|
license = licenses.gpl2Only;
|
|
platforms = platforms.linux;
|
|
maintainers = [ ];
|
|
};
|
|
}
|