mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-17 00:10:30 +00:00
12 lines
180 B
Bash
12 lines
180 B
Bash
source $stdenv/setup
|
|
|
|
preBuild() {
|
|
kernelhash=$(ls $kernel/lib/modules)
|
|
echo $kernelhash
|
|
ln -s $kernel/lib/modules/$kernelhash/build linux
|
|
}
|
|
|
|
preBuild=preBuild
|
|
|
|
genericBuild
|