manual-config: Put `source' before the version in the sourceRoot name
nix's version parsing treats the previous name as a package named `linux' with version `${version}-source', when we really want a package named `linux-source' with version `${version}' Signed-off-by: Shea Levy <shea@shealevy.com>
This commit is contained in:
parent
0c5776bc0f
commit
784c6d320c
@ -70,7 +70,7 @@ let
|
|||||||
installTarget = target: [ (if target == "uImage" then "uinstall" else "install") ];
|
installTarget = target: [ (if target == "uImage" then "uinstall" else "install") ];
|
||||||
|
|
||||||
sourceRoot = stdenv.mkDerivation {
|
sourceRoot = stdenv.mkDerivation {
|
||||||
name = "linux-${version}-source";
|
name = "linux-source-${version}";
|
||||||
|
|
||||||
inherit src;
|
inherit src;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user