Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: c04cece6026e
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 7a4d7c58e3cb
Choose a head ref
  • 8 commits
  • 9 files changed
  • 2 contributors

Commits on Sep 21, 2019

  1. iosevka: Simplify custom build process

    Although hopefully this can eventually be added to nodePackages, it uses
    some devDependencies to build custom fonts. Node2nix doesn't currently
    support enabling devDependencies for a single package.
    
    - Got rid of redundant let-in statements.
    - node-packages.json now only pulls in Iosevka.
    - generate.sh
      * Uses a nix-shell shebang to ensure it builds using the current
        version of node2nix (the old version caused some issues due to the
        19.03 release version being 1.6.0 instead of 1.7.0).
      * Builds in development mode to fix the devDependencies issue.
    - Use the tree of the built node package as sourceRoot instead of
      installing node dependencies manually. This means the source will have
      to be updated in both node-packages.json and default.nix, but to make
      things easier the derivation inherits the version number.
    - Disparate build options now all live under privateBuildPlan, which is
      converted first with builtins.toJSON and then to TOML using remarshal
      (Unfortunately there is not currently a builtins.toTOML).
    - Extra parameters can also be provided that will be converted to JSON
      then TOML. This will overwrite the default parameters.toml file.
    rileyinman committed Sep 21, 2019

    Verified

    This commit was signed with the committer’s verified signature.
    cdepillabout Dennis Gosnell
    Copy the full SHA
    98a7d79 View commit details

Commits on Sep 22, 2019

  1. Verified

    This commit was signed with the committer’s verified signature.
    cdepillabout Dennis Gosnell
    Copy the full SHA
    8bfb679 View commit details
  2. Copy the full SHA
    e1ace0f View commit details
  3. Copy the full SHA
    0ef7d0d View commit details

Commits on Sep 23, 2019

  1. Copy the full SHA
    64accf2 View commit details
  2. Copy the full SHA
    c847da5 View commit details

Commits on Sep 24, 2019

  1. Copy the full SHA
    dd2f026 View commit details
  2. Merge pull request #69219 from rileyinman/iosevka

    iosevka: Simplify custom build process
    
    The interface to configure a custom build with Nix has changed due to changes upstream; please refer to the derivation for details.
    ttuegel authored Sep 24, 2019
    Copy the full SHA
    7a4d7c5 View commit details
6 changes: 6 additions & 0 deletions maintainers/maintainer-list.nix
Original file line number Diff line number Diff line change
@@ -5370,6 +5370,12 @@
github = "rickynils";
name = "Rickard Nilsson";
};
rileyinman = {
email = "rileyminman@gmail.com";
github = "rileyinman";
githubId = 37246692;
name = "Riley Inman";
};
ris = {
email = "code@humanleg.org.uk";
github = "risicle";
123 changes: 58 additions & 65 deletions pkgs/data/fonts/iosevka/default.nix
Original file line number Diff line number Diff line change
@@ -1,83 +1,70 @@
{
stdenv, lib, pkgs,
fetchFromGitHub, fetchurl,
nodejs, ttfautohint-nox, otfcc,
{ stdenv, lib, pkgs, fetchFromGitHub
, nodejs, nodePackages, remarshal, ttfautohint-nox, otfcc

# Custom font set options.
# See https://github.com/be5invis/Iosevka#build-your-own-style
design ? [], upright ? [], italic ? [], oblique ? [],
family ? null, weights ? [],
# Custom font set name. Required if any custom settings above.
set ? null,
# Extra parameters. Can be used for ligature mapping.
extraParameters ? null
# Custom font set options.
# See https://github.com/be5invis/Iosevka#build-your-own-style
# Ex:
# privateBuildPlan = {
# family = "Iosevka Expanded";
#
# design = [
# "sans"
# "expanded"
# ];
# };
, privateBuildPlan ? null
# Extra parameters. Can be used for ligature mapping.
, extraParameters ? null
# Custom font set name. Required if any custom settings above.
, set ? null
}:

assert (design != []) -> set != null;
assert (upright != []) -> set != null;
assert (italic != []) -> set != null;
assert (oblique != []) -> set != null;
assert (family != null) -> set != null;
assert (weights != []) -> set != null;
assert (privateBuildPlan != null) -> set != null;

let
system = builtins.currentSystem;
nodePackages = import ./node-packages.nix { inherit pkgs system nodejs; };
in
stdenv.mkDerivation rec {
pname =
if set != null
then "iosevka-${set}"
else "iosevka";

let pname = if set != null then "iosevka-${set}" else "iosevka"; in

let
version = "2.3.0";
name = "${pname}-${version}";

src = fetchFromGitHub {
owner = "be5invis";
repo ="Iosevka";
repo = "Iosevka";
rev = "v${version}";
sha256 = "1qnbxhx9wvij9zia226mc3sy8j7bfsw5v1cvxvsbbwjskwqdamvv";
};
in

with lib;
let quote = str: "\"" + str + "\""; in
let toTomlList = list: "[" + (concatMapStringsSep ", " quote list) +"]"; in
let unlines = concatStringsSep "\n"; in

let
param = name: options:
if options != [] then "${name}=${toTomlList options}" else null;
config = unlines (lib.filter (x: x != null) [
"[buildPlans.${pname}]"
(param "design" design)
(param "upright" upright)
(param "italic" italic)
(param "oblique" oblique)
(if family != null then "family=\"${family}\"" else null)
(param "weights" weights)
]);
installNodeModules = unlines (lib.mapAttrsToList
(name: value: "mkdir -p node_modules/${name}\n cp -r ${value.outPath}/lib/node_modules/. node_modules")
nodePackages);
in

stdenv.mkDerivation {
inherit name pname version src;

nativeBuildInputs = [ nodejs ttfautohint-nox otfcc ];
nativeBuildInputs = [
nodejs
nodePackages."iosevka-build-deps-../../data/fonts/iosevka"
remarshal
otfcc
ttfautohint-nox
];

passAsFile = [ "config" "extraParameters" ];
config = config;
extraParameters = extraParameters;
privateBuildPlanJSON = builtins.toJSON { buildPlans.${pname} = privateBuildPlan; };
extraParametersJSON = builtins.toJSON { ${pname} = extraParameters; };
passAsFile = [ "privateBuildPlanJSON" "extraParametersJSON" ];

configurePhase = ''
mkdir -p node_modules/.bin
${installNodeModules}
${optionalString (set != null) ''mv "$configPath" private-build-plans.toml''}
${optionalString (extraParameters != null) ''cat "$extraParametersPath" >> parameters.toml''}
runHook preConfigure
${lib.optionalString (privateBuildPlan != null) ''
remarshal -i "$privateBuildPlanJSONPath" -o private-build-plans.toml -if json -of toml
''}
${lib.optionalString (extraParameters != null) ''
echo -e "\n" >> parameters.toml
remarshal -i "$extraParametersJSONPath" -if json -of toml >> parameters.toml
''}
ln -s ${nodePackages."iosevka-build-deps-../../data/fonts/iosevka"}/lib/node_modules/iosevka-build-deps/node_modules .
runHook postConfigure
'';

buildPhase = ''
npm run build -- ttf::${pname}
runHook preBuild
npm run build -- ttf::$pname
runHook postBuild
'';

installPhase = ''
@@ -89,14 +76,20 @@ stdenv.mkDerivation {
enableParallelBuilding = true;

meta = with stdenv.lib; {
homepage = https://be5invis.github.io/Iosevka/;
downloadPage = "https://github.com/be5invis/Iosevka/releases";
homepage = https://be5invis.github.io/Iosevka;
downloadPage = https://github.com/be5invis/Iosevka/releases;
description = ''
Slender monospace sans-serif and slab-serif typeface inspired by Pragmata
Pro, M+ and PF DIN Mono, designed to be the ideal font for programming.
'';
license = licenses.ofl;
platforms = platforms.all;
maintainers = with maintainers; [ cstrahan jfrankenau ttuegel babariviere ];
maintainers = with maintainers; [
cstrahan
jfrankenau
ttuegel
babariviere
rileyinman
];
};
}
6 changes: 0 additions & 6 deletions pkgs/data/fonts/iosevka/generate.sh

This file was deleted.

Loading