Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / applications / graphics / fontmatrix / default.nix
blob6945c3ac3ae42bd6a83059bfbb198a478ebaf198
1 { lib
2 , mkDerivation
3 , fetchFromGitHub
4 , cmake
5 , qttools
6 , qtwebkit
7 }:
9 mkDerivation rec {
10   pname = "fontmatrix";
11   version = "0.9.100";
13   src = fetchFromGitHub {
14     owner = "fontmatrix";
15     repo = "fontmatrix";
16     rev = "v${version}";
17     sha256 = "sha256-DtajGhx79DiecglXHja9q/TKVq8Jl2faQdA5Ib/yT88=";
18   };
20   buildInputs = [ qttools qtwebkit ];
22   nativeBuildInputs = [ cmake ];
24   meta = with lib; {
25     description = "Fontmatrix is a free/libre font explorer for Linux, Windows and Mac";
26     homepage = "https://github.com/fontmatrix/fontmatrix";
27     license = licenses.gpl2Plus;
28     platforms = platforms.linux;
29   };