forked from mirrors/nixpkgs
* Fix the aufs2 build (hopefully).
svn path=/nixpkgs/trunk/; revision=17080
This commit is contained in:
parent
c8ee5671cb
commit
eb6f32c9cb
|
@ -1,4 +1,4 @@
|
|||
{stdenv, fetchgit, kernel}:
|
||||
{ stdenv, fetchgit, kernel, perl }:
|
||||
|
||||
let s = import ./src-for-default.nix; in
|
||||
|
||||
|
@ -10,6 +10,8 @@ stdenv.mkDerivation {
|
|||
sha256 = s.hash;
|
||||
};
|
||||
|
||||
buildInputs = [ perl ];
|
||||
|
||||
buildPhase = ''
|
||||
kernelVersion=$(cd ${kernel}/lib/modules && ls)
|
||||
kernelBuild=$(echo ${kernel}/lib/modules/$kernelVersion/source)
|
||||
|
|
|
@ -5343,7 +5343,7 @@ let
|
|||
};
|
||||
|
||||
aufs2 = import ../os-specific/linux/aufs2 {
|
||||
inherit fetchgit stdenv kernel;
|
||||
inherit fetchgit stdenv kernel perl;
|
||||
};
|
||||
|
||||
exmap = import ../os-specific/linux/exmap {
|
||||
|
|
Loading…
Reference in a new issue