Skip to content

Commit b3b3e37

Browse files
committed
aporetic-bin: init at 1.1.0
1 parent 3280fce commit b3b3e37

File tree

2 files changed

+40
-1
lines changed

2 files changed

+40
-1
lines changed
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
{
2+
stdenvNoCC,
3+
lib,
4+
fetchFromGitHub,
5+
}:
6+
7+
stdenvNoCC.mkDerivation (finalAttrs: {
8+
pname = "aporetic-bin";
9+
version = "1.1.0";
10+
11+
src = fetchFromGitHub {
12+
owner = "protesilaos";
13+
repo = "aporetic";
14+
tag = finalAttrs.version;
15+
hash = "sha256-5lPViAo9SztOdds6HEmKJpT17tgcxmU/voXDffxTMDI=";
16+
};
17+
18+
installPhase = ''
19+
runHook preInstall
20+
21+
mkdir -p $out/share/fonts/truetype
22+
cp -r $src/{aporetic-sans-mono,aporetic-sans,aporetic-serif-mono,aporetic-serif} $out/share/fonts/truetype
23+
24+
runHook postInstall
25+
'';
26+
27+
meta = {
28+
homepage = "https://github.com/protesilaos/aporetic";
29+
description = ''
30+
Custom build of Iosevka with different style and metrics than the default. This is the successor to my "Iosevka Comfy" fonts.
31+
'';
32+
license = lib.licenses.ofl;
33+
platforms = lib.platforms.all;
34+
maintainers = with lib.maintainers; [
35+
DamienCassou
36+
drupol
37+
];
38+
};
39+
})

pkgs/by-name/ap/aporetic/package.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ symlinkJoin {
5757
meta = {
5858
inherit (src.meta) homepage;
5959
description = ''
60-
Custom build of Iosevka with different style and metrics than the default. This is the successor to my "Iosevka Comfy" fonts.
60+
Custom build of Iosevka with different style and metrics than the default, successor to my "Iosevka Comfy" fonts
6161
'';
6262
license = lib.licenses.ofl;
6363
platforms = iosevka.meta.platforms;

0 commit comments

Comments
 (0)