summary refs log tree commit diff
path: root/pkgs/misc/cups
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2016-03-18 11:30:29 +0100
committerPeter Simons <simons@cryp.to>2016-03-18 11:36:58 +0100
commit6c935046a75016e9f1e6b142ce23fa53cb5e31d4 (patch)
treec9d19b2110b4621c1806bfdc06a7ccf380bb895c /pkgs/misc/cups
parentab450f8477e30b211798de97e197c2e77799acd6 (diff)
downloadnixlib-6c935046a75016e9f1e6b142ce23fa53cb5e31d4.tar
nixlib-6c935046a75016e9f1e6b142ce23fa53cb5e31d4.tar.gz
nixlib-6c935046a75016e9f1e6b142ce23fa53cb5e31d4.tar.bz2
nixlib-6c935046a75016e9f1e6b142ce23fa53cb5e31d4.tar.lz
nixlib-6c935046a75016e9f1e6b142ce23fa53cb5e31d4.tar.xz
nixlib-6c935046a75016e9f1e6b142ce23fa53cb5e31d4.tar.zst
nixlib-6c935046a75016e9f1e6b142ce23fa53cb5e31d4.zip
splix: revert of revert of "2.0.0 -> svn-r315 version update"
This reverts commit e338d6a0fc1293c1d5b63d9e38e690526fc7d1b1. I originally
reverted the update because it broke my Samsung printer. Now, it turns out that
this issue can be fixed by deleting and then re-creating the printer in CUPS to
update the driver.

It's possible that Gutenprints 'cups-genppdupdates' could remedy the situation
as well, but I had no chance to verify that since I don't use Gutenprint.

Closes https://github.com/NixOS/nixpkgs/issues/13734.
Diffstat (limited to 'pkgs/misc/cups')
-rw-r--r--pkgs/misc/cups/drivers/splix/default.nix20
-rw-r--r--pkgs/misc/cups/drivers/splix/splix-2.0.0-gcc45.patch18
2 files changed, 10 insertions, 28 deletions
diff --git a/pkgs/misc/cups/drivers/splix/default.nix b/pkgs/misc/cups/drivers/splix/default.nix
index 532ef2a45d5d..9a924e044d7f 100644
--- a/pkgs/misc/cups/drivers/splix/default.nix
+++ b/pkgs/misc/cups/drivers/splix/default.nix
@@ -1,16 +1,16 @@
-{stdenv, fetchurl, cups, zlib}:
-
+{ stdenv, fetchsvn, fetchurl, cups, zlib }:
+let rev = "315"; in
 stdenv.mkDerivation rec {
-  name = "splix-2.0.0";
-
-  src = fetchurl {
-    url = "mirror://sourceforge/splix/${name}.tar.bz2";
-    sha256 = "0bwivrwwvh6hzvnycpzqs7a0capgycahc4s3v9ihx552fgy07xwp";
+  name = "splix-svn-${rev}";
+  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 = "r${rev}";
+    sha256 = "16wbm4xnz35ca3mw2iggf5f4jaxpyna718ia190ka6y4ah932jxl";
   };
 
-  patches = [ ./splix-2.0.0-gcc45.patch ];
-
-  preBuild=''
+  preBuild = ''
     makeFlags="V=1 DISABLE_JBIG=1 CUPSFILTER=$out/lib/cups/filter CUPSPPD=$out/share/cups/model"
   '';
 
diff --git a/pkgs/misc/cups/drivers/splix/splix-2.0.0-gcc45.patch b/pkgs/misc/cups/drivers/splix/splix-2.0.0-gcc45.patch
deleted file mode 100644
index 5ccdcb2514c5..000000000000
--- a/pkgs/misc/cups/drivers/splix/splix-2.0.0-gcc45.patch
+++ /dev/null
@@ -1,18 +0,0 @@
-Fixing build with gcc 4.5
-
-http://bugs.gentoo.org/show_bug.cgi?id=318581
-
-downloaded from
-http://gentoo-overlays.zugaina.org/gentoo/portage/net-print/splix/files/splix-2.0.0-gcc45.patch
-
---- splix-old/src/ppdfile.cpp
-+++ splix-new/src/ppdfile.cpp
-@@ -282,7 +282,7 @@
-  * Opérateur d'assignation
-  * Assignment operator
-  */
--void PPDFile::Value::operator = (const PPDFile::Value::Value &val)
-+void PPDFile::Value::operator = (const PPDFile::Value &val)
- {
-     if (_preformatted)
-         delete[] _preformatted;