mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 00:38:16 +03:00
glibc_multi: fix package name (close #5284)
"multi" should be between the "glibc" and the version
This commit is contained in:
parent
b13301ecbe
commit
be2060f1e7
@ -1,7 +1,10 @@
|
||||
{ runCommand, glibc, glibc32
|
||||
}:
|
||||
|
||||
runCommand "${glibc.name}-multi"
|
||||
let
|
||||
nameVersion = builtins.parseDrvName glibc.name;
|
||||
in
|
||||
runCommand "${nameVersion.name}-multi-${nameVersion.version}"
|
||||
{ inherit glibc32;
|
||||
glibc64 = glibc;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user