mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-09 19:13:26 +03:00
nebula-sans: init at 1.010
This commit is contained in:
parent
b73fc9705b
commit
c0ebaebf99
1 changed files with 33 additions and 0 deletions
33
pkgs/by-name/ne/nebula-sans/package.nix
Normal file
33
pkgs/by-name/ne/nebula-sans/package.nix
Normal file
|
@ -0,0 +1,33 @@
|
|||
{
|
||||
lib,
|
||||
stdenvNoCC,
|
||||
fetchzip,
|
||||
}:
|
||||
|
||||
stdenvNoCC.mkDerivation (finalAttrs: {
|
||||
pname = "nebula-sans";
|
||||
version = "1.010";
|
||||
|
||||
src = fetchzip {
|
||||
url = "https://nebulasans.com/download/NebulaSans-${finalAttrs.version}.zip";
|
||||
stripRoot = false;
|
||||
hash = "sha256-jFoHgxczU7VdZcVj7HI4OOjK28jcptu8sGOrs3O+0S0=";
|
||||
};
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
|
||||
mkdir -p $out/share/fonts/truetype
|
||||
mv TTF/*.ttf $out/share/fonts/truetype
|
||||
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "Versatile, modern, humanist sans-serif with a neutral aesthetic, designed for legibility in both digital and print applications";
|
||||
maintainers = [ lib.maintainers.colemickens ];
|
||||
platforms = lib.platforms.all;
|
||||
homepage = "https://nebulasans.com/";
|
||||
license = lib.licenses.ofl;
|
||||
};
|
||||
})
|
Loading…
Add table
Add a link
Reference in a new issue