forked from mirrors/nixpkgs
buildRubyGem: pass the gem version through into the derivation name
This commit is contained in:
parent
b4da3bb88b
commit
c998447a13
|
@ -91,7 +91,7 @@ stdenv.mkDerivation (attrs // {
|
|||
++ lib.optional stdenv.isDarwin darwin.libobjc
|
||||
++ buildInputs;
|
||||
|
||||
name = attrs.name or (namePrefix + gemName);
|
||||
name = attrs.name or "${namePrefix}${gemName}-${version}";
|
||||
|
||||
inherit src;
|
||||
|
||||
|
|
Loading…
Reference in a new issue