mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
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
1 changed files with 1 additions and 1 deletions
|
@ -70,7 +70,7 @@ let
|
|||
installTarget = target: [ (if target == "uImage" then "uinstall" else "install") ];
|
||||
|
||||
sourceRoot = stdenv.mkDerivation {
|
||||
name = "linux-${version}-source";
|
||||
name = "linux-source-${version}";
|
||||
|
||||
inherit src;
|
||||
|
||||
|
|
Loading…
Reference in a new issue