2023-01-28 05:13:31 +00:00
|
|
|
{ lib, stdenvNoCC, fetchzip }:
|
2019-03-29 07:24:46 +00:00
|
|
|
|
2023-01-28 05:13:31 +00:00
|
|
|
stdenvNoCC.mkDerivation rec {
|
|
|
|
pname = "inter";
|
2023-11-20 04:50:29 +00:00
|
|
|
version = "4.0";
|
2019-03-29 07:24:46 +00:00
|
|
|
|
2023-01-28 05:13:31 +00:00
|
|
|
src = fetchzip {
|
|
|
|
url = "https://github.com/rsms/inter/releases/download/v${version}/Inter-${version}.zip";
|
|
|
|
stripRoot = false;
|
2023-11-20 04:50:29 +00:00
|
|
|
hash = "sha256-hFK7xFJt69n+98+juWgMvt+zeB9nDkc8nsR8vohrFIc=";
|
2023-01-28 05:13:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
runHook preInstall
|
|
|
|
|
2023-11-20 04:50:29 +00:00
|
|
|
mkdir -p $out/share/fonts/truetype
|
|
|
|
cp Inter.ttc InterVariable*.ttf $out/share/fonts/truetype
|
2019-03-29 07:24:46 +00:00
|
|
|
|
2023-01-28 05:13:31 +00:00
|
|
|
runHook postInstall
|
|
|
|
'';
|
2019-03-29 07:24:46 +00:00
|
|
|
|
2019-05-13 01:55:32 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://rsms.me/inter/";
|
2019-03-29 07:24:46 +00:00
|
|
|
description = "A typeface specially designed for user interfaces";
|
|
|
|
license = licenses.ofl;
|
|
|
|
platforms = platforms.all;
|
2019-05-31 02:49:50 +00:00
|
|
|
maintainers = with maintainers; [ demize dtzWill ];
|
2019-03-29 07:24:46 +00:00
|
|
|
};
|
2023-01-28 05:13:31 +00:00
|
|
|
}
|