···11{ stdenv, fetchsvn, fetchurl, cups, zlib }:
22-let rev = "r315"; in
33-stdenv.mkDerivation (rec {
22+let rev = "315"; in
33+stdenv.mkDerivation rec {
44 name = "splix-svn-${rev}";
55 src = fetchsvn {
66 # We build this from svn, because splix hasn't been in released in several years
77- # although the community has been adding some new printer models
88- # if you are having problems, please try the stable version below and report back
77+ # although the community has been adding some new printer models.
98 url = "svn://svn.code.sf.net/p/splix/code/splix";
1010- inherit rev;
99+ rev = "r${rev}";
1110 sha256 = "16wbm4xnz35ca3mw2iggf5f4jaxpyna718ia190ka6y4ah932jxl";
1211 };
1312···2221 platforms = stdenv.lib.platforms.linux;
2322 maintainers = [ stdenv.lib.maintainers.simons ];
2423 };
2525-2626-} /* // { # uncomment to build the stable version
2727-2828- name = "splix-2.0.0";
2929- patches = [ ./splix-2.0.0-gcc45.patch ];
3030- src = fetchurl {
3131- url = "mirror://sourceforge/splix/${name}.tar.bz2";
3232- sha256 = "0bwivrwwvh6hzvnycpzqs7a0capgycahc4s3v9ihx552fgy07xwp";
3333- };
3434-3535-} */)
2424+}