iosevka-bin: Use iosevka's meta

The two packages have the same metadata, except for the maintainers.
This commit is contained in:
Aluísio Augusto Silva Gonçalves
2020-11-04 07:47:28 -03:00
parent f838052d4f
commit 988f0cf3c5
2 changed files with 10 additions and 16 deletions
+5 -11
View File
@@ -1,4 +1,4 @@
{ stdenv, lib, fetchurl, unzip
{ stdenv, lib, fetchurl, iosevka, unzip
, variant ? ""
}:
@@ -29,16 +29,10 @@ in stdenv.mkDerivation rec {
unzip -d $out/share/fonts/truetype $src
'';
meta = with lib; {
homepage = "https://be5invis.github.io/Iosevka/";
downloadPage = "https://github.com/be5invis/Iosevka/releases";
description = ''
Slender monospace sans-serif and slab-serif typeface inspired by Pragmata
Pro, M+ and PF DIN Mono, designed to be the ideal font for programming.
'';
license = licenses.ofl;
platforms = platforms.all;
maintainers = [ maintainers.cstrahan ];
meta = iosevka.meta // {
maintainers = with lib.maintainers; [
cstrahan
];
};
passthru.updateScript = ./update.sh;