mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
liberation-sans-narrow: fonttools requires python3
This commit is contained in:
parent
d7a618ac01
commit
b076565429
1 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, fetchFromGitHub, fontforge, pythonPackages, python }:
|
||||
{ stdenv, fetchFromGitHub, fontforge, python3Packages, python3 }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "liberation-sans-narrow";
|
||||
|
@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
|
|||
sha256 = "1qw554jbdnqkg6pjjl4cqkgsalq3398kzvww2naw30vykcz752bm";
|
||||
};
|
||||
|
||||
buildInputs = [ fontforge pythonPackages.fonttools python ];
|
||||
buildInputs = [ fontforge python3Packages.fonttools python3 ];
|
||||
|
||||
installPhase = ''
|
||||
find . -name '*Narrow*.ttf' -exec install -m444 -Dt $out/share/fonts/truetype {} \;
|
||||
|
|
Loading…
Reference in a new issue