fix(flake): add correct fonttools package
continuous-integration/drone/pr Build is pending Details

This commit is contained in:
kolaente 2023-01-21 12:18:23 +01:00
parent 9d7ffc30bd
commit e682724a13
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 7 additions and 1 deletions

View File

@ -5,6 +5,12 @@
let pkgs = nixpkgs.legacyPackages.x86_64-linux;
in {
defaultPackage.x86_64-linux =
pkgs.mkShell { buildInputs = [ pkgs.nodePackages.pnpm pkgs.cypress pkgs.git-cliff pkgs.jq pkgs.fonttools ]; };
pkgs.mkShell { buildInputs = with pkgs; [
nodePackages.pnpm
cypress
git-cliff
jq
python310Packages.fonttools
]; };
};
}