summary refs log tree commit diff
path: root/pkgs/os-specific/linux/libcap/default.nix
blob: a0adb3813fd890322dcfec5f6e0d9c83aa3ed6f2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{stdenv, fetchurl}:

stdenv.mkDerivation {
  name = "libcap-1.10";
  src = fetchurl {
    url = http://www.kernel.org/pub/linux/libs/security/linux-privs/kernel-2.4/libcap-1.10.tar.bz2;
    md5 = "4426a413128142cab89eb2e6f13d8571";
  };
  
  preBuild = "
    substituteInPlace libcap/Makefile --replace /usr/include ${stdenv.glibc}/include
    makeFlags=\"LIBDIR=$out/lib INCDIR=$out/include SBINDIR=$out/sbin MANDIR=$out/man\"
  ";

  patches = [
    # Borrowed from http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/libcap/files/libcap-1.10-syscall.patch?rev=1.2&view=log.
    ./syscall.patch
  ];
}