bitscope: create derivations with version info

So far the store paths produced by the bitscope derivations have been
version-less. Fix it.

Changed files
+1 -1
pkgs
applications
science
electronics
bitscope
+1 -1
pkgs/applications/science/electronics/bitscope/common.nix
···
runScript = target;
};
in buildFHSUserEnv {
-
name = attrs.toolName;
+
name = "${attrs.toolName}-${attrs.version}";
runScript = "${pkg.outPath}/bin/${attrs.toolName}";
} // { inherit (pkg) meta name; }