summary refs log blame commit diff
path: root/pkgs/os-specific/linux/splashutils/1.5.nix
blob: 48c1b0ff78ce5877bf20a3f5eeb76068b4927a0e (plain) (tree)
1
2
3
4
5
6
7
8


                                         
                               

                  
                                                                                                
                                                                    



                                     


                                                                                           
                                                                 













                                                   
{stdenv, fetchurl, klibc, 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 = [klibc zlib libjpeg];
  
  configureFlags = "--without-ttf --without-png --without-gpm --with-themedir=/etc/splash";

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

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

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