iosevka-bin: Fix meta attributes

Joining the entire `iosevka.meta` set seemed to cause some attributes to
not be set as expected. For example `iosevka-bin.meta.name` was
`iosevka-14.0.1` instead of `iosevka-bin-10.1.0`, and
`iosevka-bin.meta.position` also pointed to `iosevka/default.nix`
instead of `iosevka/bin.nix`.
This commit is contained in:
Stephane Raux 2022-03-06 22:22:38 -06:00 committed by Damien Cassou
parent e899627635
commit 5eae254161
No known key found for this signature in database
GPG key ID: B68746238E59B548

View file

@ -30,7 +30,8 @@ in stdenv.mkDerivation rec {
unzip -d $out/share/fonts/truetype $src
'';
meta = iosevka.meta // {
meta = {
inherit (iosevka.meta) homepage downloadPage description license platforms;
maintainers = with lib.maintainers; [
cstrahan
];