mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
bitscope: create derivations with version info
So far the store paths produced by the bitscope derivations have been version-less. Fix it.
This commit is contained in:
parent
0ef512fe7a
commit
6b834384f6
1 changed files with 1 additions and 1 deletions
|
@ -65,6 +65,6 @@ let
|
|||
runScript = target;
|
||||
};
|
||||
in buildFHSUserEnv {
|
||||
name = attrs.toolName;
|
||||
name = "${attrs.toolName}-${attrs.version}";
|
||||
runScript = "${pkg.outPath}/bin/${attrs.toolName}";
|
||||
} // { inherit (pkg) meta name; }
|
||||
|
|
Loading…
Reference in a new issue