summary refs log tree commit diff
path: root/pkgs/os-specific/linux/util-linux/default.nix
blob: 0c7ebef7eb3bcfc2b6e0ced112b7cefac28ccb2c (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
args: with args;

stdenv.mkDerivation {
  name = "util-linux-2.13-pre7";

  src = fetchurl {
    url = mirror://kernel/linux/utils/util-linux/testing/util-linux-2.13-pre7.tar.bz2;
    md5 = "13cdf4b76533e8421dc49de188f85291";
  };
  
  configureFlags = "--disable-use-tty-group";

  buildInputs = [] 
  	++ (if args ? ncurses then [args.ncurses] else [])
  ;

  preBuild = "
    makeFlagsArray=(usrbinexecdir=$out/bin usrsbinexecdir=$out/sbin datadir=$out/share exampledir=$out/share/getopt)
  ";

  # Hack to get static builds to work.
  NIX_CFLAGS_COMPILE = "-DHAVE___PROGNAME=1"; 
}