nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

cups: fix tests

+6
+6
pkgs/misc/cups/default.nix
··· 1 1 { stdenv, fetchurl, fetchpatch, pkgconfig, removeReferencesTo 2 2 , zlib, libjpeg, libpng, libtiff, pam, dbus, systemd, acl, gmp, darwin 3 3 , libusb ? null, gnutls ? null, avahi ? null, libpaper ? null 4 + , coreutils 4 5 }: 5 6 6 7 ### IMPORTANT: before updating cups, make sure the nixos/tests/printing.nix test ··· 30 29 }) 31 30 ./cups-clean-dirty.patch 32 31 ]; 32 + 33 + postPatch = '' 34 + substituteInPlace cups/testfile.c \ 35 + --replace 'cupsFileFind("cat", "/bin' 'cupsFileFind("cat", "${coreutils}/bin' 36 + ''; 33 37 34 38 nativeBuildInputs = [ pkgconfig removeReferencesTo ]; 35 39