summary refs log tree commit diff
path: root/pkgs/misc/cups/drivers/samsung/4.00.39/default.nix
blob: 27d21f86285284faab4e4155b565c7267ad33f5d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# Tested on linux-x86_64.  Might work on linux-i386.  Probably won't work on anything else.

# To use this driver in NixOS, add it to printing.drivers in configuration.nix.
# configuration.nix might look like this when you're done:
# { pkgs, ... }: {
#   printing = {
#     enable = true;
#     drivers = [ pkgs.samsungUnifiedLinuxDriver ];
#   };
#   (more stuff)
# }
# (This advice was tested on 2010 August 2.)

{ stdenv, fetchurl, cups, gcc, ghostscript, glibc, patchelf }:

# Do not bump lightly! Visit <http://www.bchemnet.com/suldr/supported.html>
# to see what will break when upgrading. Consider a new versioned attribute.
stdenv.mkDerivation rec {
  name = "samsung-UnifiedLinuxDriver-${version}";
  version = "4.00.39";

  src = fetchurl {
    url = "http://www.bchemnet.com/suldr/driver/UnifiedLinuxDriver-${version}.tar.gz";
    sha256 = "144b4xggbzjfq7ga5nza7nra2cf6qn63z5ls7ba1jybkx1vm369k";
  };

  buildInputs = [ cups gcc ghostscript glibc patchelf ];

  inherit cups gcc ghostscript glibc;

  builder = ./builder.sh;

  meta = with stdenv.lib; {
    description = "Samsung's Linux printing drivers; includes binaries without source code";
    homepage = http://www.samsung.com/;
    license = licenses.unfree;
    platforms = platforms.linux;
    maintainers = with maintainers; [ nckx ];
  };
}