summary refs log tree commit diff
path: root/pkgs/os-specific/linux/splashutils/default.nix
blob: 86bdd7eee9ba2380defc4395a614f790fc113d86 (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
{ stdenv, fetchurl, zlib, libjpeg }:

stdenv.mkDerivation {
  name = "splashutils-1.5.4.3";

  src = fetchurl {
    url = http://dev.gentoo.org/~spock/projects/splashutils/current/splashutils-1.5.4.3.tar.bz2;
    sha256 = "0vn0ifqp9a3bmprzx2yr82hgq8m2y5xv8qcifs2plz6p3lidagpg";
  };

  buildInputs = [ zlib libjpeg ];
  
  configureFlags = "--without-ttf --without-png --without-gpm --with-themedir=/etc/splash KLCC=gcc";

  dontDisableStatic = true;

  preConfigure = ''
    configureFlags="$configureFlags --with-essential-prefix=$out"
    substituteInPlace src/common.h \
      --replace 'FBSPLASH_DIR"/sys"' '"/sys"' \
      --replace 'FBSPLASH_DIR"/proc"' '"/proc"'
    substituteInPlace src/Makefile.in \
      --replace '-all-static' "" \
      --replace '-static' ""
  '';

  CPP = "gcc -E";
  CXXCPP = "g++ -E";
  NIX_CFLAGS_COMPILE = "-fPIC";

  passthru = {
    helperName = "sbin/fbcondecor_helper";
    controlName = "sbin/fbcondecor_ctl";
    helperProcFile = "/proc/sys/kernel/fbcondecor";
  };
}