Skip to content

Commit

Permalink
manual-config: Put `source' before the version in the sourceRoot name
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
shlevy committed Mar 24, 2013
1 parent 7efab0f commit 6bbd50c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkgs/os-specific/linux/kernel/manual-config.nix
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -67,7 +67,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;


Expand Down

0 comments on commit 6bbd50c

Please sign in to comment.