tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
0
fork
atom
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
nebula-sans: init at 1.010
colemickens.tngl.sh
9 months ago
c0ebaebf
b73fc970
+33
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
ne
nebula-sans
package.nix
+33
pkgs/by-name/ne/nebula-sans/package.nix
···
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
···
1
+
{
2
+
lib,
3
+
stdenvNoCC,
4
+
fetchzip,
5
+
}:
6
+
7
+
stdenvNoCC.mkDerivation (finalAttrs: {
8
+
pname = "nebula-sans";
9
+
version = "1.010";
10
+
11
+
src = fetchzip {
12
+
url = "https://nebulasans.com/download/NebulaSans-${finalAttrs.version}.zip";
13
+
stripRoot = false;
14
+
hash = "sha256-jFoHgxczU7VdZcVj7HI4OOjK28jcptu8sGOrs3O+0S0=";
15
+
};
16
+
17
+
installPhase = ''
18
+
runHook preInstall
19
+
20
+
mkdir -p $out/share/fonts/truetype
21
+
mv TTF/*.ttf $out/share/fonts/truetype
22
+
23
+
runHook postInstall
24
+
'';
25
+
26
+
meta = {
27
+
description = "Versatile, modern, humanist sans-serif with a neutral aesthetic, designed for legibility in both digital and print applications";
28
+
maintainers = [ lib.maintainers.colemickens ];
29
+
platforms = lib.platforms.all;
30
+
homepage = "https://nebulasans.com/";
31
+
license = lib.licenses.ofl;
32
+
};
33
+
})