mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 00:43:20 +00:00
Merge pull request #328298 from romildo/fix.monoid
monoid: fixes related to fontforge
This commit is contained in:
commit
6fac6e5a93
@ -1,4 +1,4 @@
|
|||||||
{ lib, stdenv, fetchFromGitHub, python39 }:
|
{ lib, stdenv, fetchFromGitHub, fetchpatch, python3 }:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
pname = "monoid";
|
pname = "monoid";
|
||||||
@ -12,11 +12,19 @@ stdenv.mkDerivation {
|
|||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
(python39.withPackages (pp: with pp; [
|
(python3.withPackages (pp: with pp; [
|
||||||
fontforge
|
fontforge
|
||||||
]))
|
]))
|
||||||
];
|
];
|
||||||
|
|
||||||
|
patches = [
|
||||||
|
# port to python 3
|
||||||
|
(fetchpatch {
|
||||||
|
url = "https://salsa.debian.org/fonts-team/fonts-monoid/-/raw/master/debian/patches/0002-fontbuilder.py-Fix-FTBFS-with-non-int-bearing-value.patch";
|
||||||
|
hash = "sha256-IG3KXvOFZfi8dhVuKDYo0onl6ruEe24aFHBgSoMKf9c=";
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
buildPhase = ''
|
buildPhase = ''
|
||||||
local _d=""
|
local _d=""
|
||||||
local _l=""
|
local _l=""
|
||||||
|
Loading…
Reference in New Issue
Block a user