3
0
Fork 0
forked from mirrors/nixpkgs

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:
Shea Levy 2013-12-31 22:50:41 -05:00
parent 0c5776bc0f
commit 784c6d320c

View file

@ -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;