mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-25 12:22:37 +03:00
fontforge: 20200314 -> 20201107
also use fetchFromGitHub for getting the source.
This commit is contained in:
parent
7310abaab5
commit
a0800919f1
@ -1,5 +1,4 @@
|
|||||||
{ stdenv, fetchurl, lib
|
{ stdenv, fetchFromGitHub, lib
|
||||||
, fetchpatch
|
|
||||||
, cmake, perl, uthash, pkg-config, gettext
|
, cmake, perl, uthash, pkg-config, gettext
|
||||||
, python, freetype, zlib, glib, libungif, libpng, libjpeg, libtiff, libxml2, cairo, pango
|
, python, freetype, zlib, glib, libungif, libpng, libjpeg, libtiff, libxml2, cairo, pango
|
||||||
, readline, woff2, zeromq, libuninameslist
|
, readline, woff2, zeromq, libuninameslist
|
||||||
@ -15,25 +14,15 @@ assert withGTK -> withGUI;
|
|||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "fontforge";
|
pname = "fontforge";
|
||||||
version = "20200314";
|
version = "20201107";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchFromGitHub {
|
||||||
url = "https://github.com/${pname}/${pname}/releases/download/${version}/${pname}-${version}.tar.xz";
|
owner = pname;
|
||||||
sha256 = "0qf88wd6riycq56d24brybyc93ns74s0nyyavm43zp2kfcihn6fd";
|
repo = pname;
|
||||||
|
rev = version;
|
||||||
|
sha256 = "sha256-Rl/5lbXaPgIndANaD0IakaDus6T53FjiBb45FIuGrvc=";
|
||||||
};
|
};
|
||||||
|
|
||||||
patches = [
|
|
||||||
# Unreleased fix for https://github.com/fontforge/fontforge/issues/4229
|
|
||||||
# which is required to fix an uninterposated `${CMAKE_INSTALL_PREFIX}/lib`, see
|
|
||||||
# see https://github.com/nh2/static-haskell-nix/pull/98#issuecomment-665395399
|
|
||||||
# TODO: Remove https://github.com/fontforge/fontforge/pull/4232 is in a release.
|
|
||||||
(fetchpatch {
|
|
||||||
name = "fontforge-cmake-set-rpath-to-the-configure-time-CMAKE_INSTALL_PREFIX";
|
|
||||||
url = "https://github.com/fontforge/fontforge/commit/297ee9b5d6db5970ca17ebe5305189e79a1520a1.patch";
|
|
||||||
sha256 = "14qfp8pwh0vzzib4hq2nc6xhn8lc1cal1sb0lqwb2q5dijqx5kqk";
|
|
||||||
})
|
|
||||||
];
|
|
||||||
|
|
||||||
# use $SOURCE_DATE_EPOCH instead of non-deterministic timestamps
|
# use $SOURCE_DATE_EPOCH instead of non-deterministic timestamps
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
find . -type f -name '*.c' -exec sed -r -i 's#\btime\(&(.+)\)#if (getenv("SOURCE_DATE_EPOCH")) \1=atol(getenv("SOURCE_DATE_EPOCH")); else &#g' {} \;
|
find . -type f -name '*.c' -exec sed -r -i 's#\btime\(&(.+)\)#if (getenv("SOURCE_DATE_EPOCH")) \1=atol(getenv("SOURCE_DATE_EPOCH")); else &#g' {} \;
|
||||||
|
Loading…
Reference in New Issue
Block a user