nixpkgs/pkgs/applications/graphics/fontmatrix/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
630 B
Nix
Raw Normal View History

2023-08-23 15:40:05 +00:00
{ lib
, mkDerivation
, fetchFromGitHub
, cmake
, qttools
, qtwebkit
}:
2015-12-11 13:35:04 +00:00
mkDerivation rec {
pname = "fontmatrix";
2023-08-23 15:40:05 +00:00
version = "0.9.100";
src = fetchFromGitHub {
2023-08-23 15:40:05 +00:00
owner = "fontmatrix";
repo = "fontmatrix";
2023-08-23 15:40:05 +00:00
rev = "v${version}";
sha256 = "sha256-DtajGhx79DiecglXHja9q/TKVq8Jl2faQdA5Ib/yT88=";
2015-12-11 13:35:04 +00:00
};
buildInputs = [ qttools qtwebkit ];
2015-12-11 13:35:04 +00:00
nativeBuildInputs = [ cmake ];
meta = with lib; {
2015-12-11 13:35:04 +00:00
description = "Fontmatrix is a free/libre font explorer for Linux, Windows and Mac";
homepage = "https://github.com/fontmatrix/fontmatrix";
license = licenses.gpl2Plus;
platforms = platforms.linux;
2015-12-11 13:35:04 +00:00
};
}