2020-09-21 06:01:37 +00:00
|
|
|
{ lib, mkDerivation, fetchpatch, fetchFromGitHub, cmake, qttools, qtwebkit }:
|
2015-12-11 13:35:04 +00:00
|
|
|
|
2020-09-21 06:01:37 +00:00
|
|
|
mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "fontmatrix";
|
2023-08-23 11:48:54 +00:00
|
|
|
version = "0.6.0";
|
2017-03-18 23:30:57 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2020-09-21 06:01:37 +00:00
|
|
|
owner = "fcoiffie";
|
2017-03-18 23:30:57 +00:00
|
|
|
repo = "fontmatrix";
|
2020-09-21 06:01:37 +00:00
|
|
|
rev = "1ff8382d8c85c18d9962918f461341ff4fe21993";
|
|
|
|
sha256 = "0yx1gbsjj9ddq1kiqplif1w5x5saw250zbmhmd4phqmaqzr60w0h";
|
2015-12-11 13:35:04 +00:00
|
|
|
};
|
|
|
|
|
2020-09-21 06:01:37 +00:00
|
|
|
# Add missing QAction include
|
|
|
|
patches = [ (fetchpatch {
|
|
|
|
url = "https://github.com/fcoiffie/fontmatrix/commit/dc6de8c414ae21516b72daead79c8db88309b102.patch";
|
|
|
|
sha256 = "092860fdyf5gq67jqfxnlgwzjgpizi6j0njjv3m62aiznrhig7c8";
|
|
|
|
})];
|
|
|
|
|
|
|
|
buildInputs = [ qttools qtwebkit ];
|
2015-12-11 13:35:04 +00:00
|
|
|
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
|
2016-08-04 07:40:28 +00:00
|
|
|
hardeningDisable = [ "format" ];
|
|
|
|
|
2020-09-21 06:01:37 +00:00
|
|
|
meta = with lib; {
|
2015-12-11 13:35:04 +00:00
|
|
|
description = "Fontmatrix is a free/libre font explorer for Linux, Windows and Mac";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/fontmatrix/fontmatrix";
|
2020-09-21 06:01:37 +00:00
|
|
|
license = licenses.gpl2Plus;
|
2017-03-18 23:30:57 +00:00
|
|
|
platforms = platforms.linux;
|
2015-12-11 13:35:04 +00:00
|
|
|
};
|
|
|
|
}
|