summary refs log tree commit diff
path: root/pkgs/applications/graphics/fontmatrix/default.nix
blob: 84986e0d900674943d4b0be3e314fac6be70e5b2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ stdenv, fetchurl, cmake, qt4 }:

stdenv.mkDerivation rec {
  name = "fontmatrix-0.6.0";
  src = fetchurl {
    url = "http://fontmatrix.be/archives/${name}-Source.tar.gz";
    sha256 = "bcc5e929d95d2a0c9481d185144095c4e660255220a7ae6640298163ee77042c";
  };

  buildInputs = [ qt4 ];

  nativeBuildInputs = [ cmake ];

  meta = {
    description = "Fontmatrix is a free/libre font explorer for Linux, Windows and Mac";
    homepage = http://fontmatrix.be/;
    license = stdenv.lib.licenses.gpl2;
  };
}