4fa4ab3a6e
First, pass in `self' again so that overriding works properly (thanks for pointing that out, @edolstra) Second, instead of having linuxPackages*.kernel mean something different inside the set and out, add a new attribute linuxPackages*.kernelDev, which for the generic kernel is simply linuxPackages*.kernel but for the manual-config kernel is the `dev' output (which has the build tree, source tree, etc.) The second change required trivial modifications in a bunch of expressions, I verified that all of the linuxPackages* sets defined in all-packages.nix have the same drv paths before and after the change. Signed-off-by: Shea Levy <shea@shealevy.com>
41 lines
937 B
Nix
41 lines
937 B
Nix
{ stdenv, fetchgit, kernelDev, aufs }:
|
|
|
|
assert aufs != null;
|
|
|
|
stdenv.mkDerivation {
|
|
name = "aufs3-util-${aufs.patch.version}-${kernelDev.version}";
|
|
|
|
src = fetchgit {
|
|
url = git://aufs.git.sourceforge.net/gitroot/aufs/aufs-util.git;
|
|
rev = aufs.patch.utilRev;
|
|
sha256 = aufs.patch.utilHash;
|
|
};
|
|
|
|
buildInputs = [ aufs ];
|
|
|
|
makeFlags =
|
|
[ "KDIR=${kernelDev}/lib/modules/${kernelDev.modDirVersion}/build"
|
|
"Install=install"
|
|
"DESTDIR=$(out)"
|
|
];
|
|
|
|
postInstall =
|
|
''
|
|
mv $out/usr/* $out
|
|
rmdir $out/usr
|
|
|
|
cp aufs.shlib $out/lib/
|
|
|
|
substituteInPlace $out/bin/aubrsync \
|
|
--replace /sbin/mount $out/sbin/mount \
|
|
--replace /usr/lib/aufs.shlib $out/lib/aufs.shlib
|
|
'';
|
|
|
|
meta = {
|
|
description = "Utilities for AUFS3";
|
|
homepage = http://aufs.sourceforge.net/;
|
|
maintainers = [ stdenv.lib.maintainers.eelco ];
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
}
|