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:
Bjørn Forsman 2018-01-15 08:17:50 +01:00
parent 0ef512fe7a
commit 6b834384f6

View file

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