mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
junction: init at 2014-05-29
This commit is contained in:
parent
35fb11a99a
commit
3a0d48b588
34
pkgs/data/fonts/junction/default.nix
Normal file
34
pkgs/data/fonts/junction/default.nix
Normal file
@ -0,0 +1,34 @@
|
||||
{ lib, fetchFromGitHub, stdenvNoCC }:
|
||||
|
||||
stdenvNoCC.mkDerivation (self: {
|
||||
pname = "junction";
|
||||
version = "2014-05-29";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "theleagueof";
|
||||
repo = self.pname;
|
||||
rev = "fb73260e86dd301b383cf6cc9ca8e726ef806535";
|
||||
hash = "sha256-Zqh23HPWGed+JkADYjYdsVNRxqJDvC9xhnqAqWZ3Eu8=";
|
||||
};
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
|
||||
install -D -m444 -t $out/share/fonts/opentype $src/*.otf
|
||||
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "Junction is a a humanist sans-serif font";
|
||||
longDescription = ''
|
||||
Junction is a a humanist sans-serif, and the first open-source type
|
||||
project started by The League of Moveable Type. It has been updated
|
||||
(2014) to include additional weights (light/bold) and expanded
|
||||
international support.
|
||||
'';
|
||||
homepage = "https://www.theleagueofmoveabletype.com/junction";
|
||||
license = lib.licenses.ofl;
|
||||
maintainers = with lib.maintainers; [ minijackson ];
|
||||
};
|
||||
})
|
@ -27226,6 +27226,8 @@ with pkgs;
|
||||
|
||||
joypixels = callPackage ../data/fonts/joypixels { };
|
||||
|
||||
junction-font = callPackage ../data/fonts/junction { };
|
||||
|
||||
junicode = callPackage ../data/fonts/junicode { };
|
||||
|
||||
julia-mono = callPackage ../data/fonts/julia-mono { };
|
||||
|
Loading…
Reference in New Issue
Block a user