summary refs log tree commit diff
path: root/pkgs/misc/cups/default.nix
blob: e074837adf2b4fcf919b6129523e4f71238400a6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
{ stdenv, fetchurl}:

stdenv.mkDerivation {
  name = "cups-1.1.23";
  builder = ./builder.sh;
  src = fetchurl {
    url = http://nix.cs.uu.nl/dist/tarballs/cups-1.1.23-source.tar.bz2;
    md5 = "4ce09b1dce09b6b9398af0daae9adf63";
  };
  patches = [./cups-rc.d.patch];
}