summary refs log blame commit diff
path: root/pkgs/applications/graphics/fontmatrix/default.nix
blob: 14ab9c26d7de070f653ab11d0b741b452e5414fc (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
















                                                                                        
                                           

    
{ 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;
    platforms = stdenv.lib.platforms.linux;
  };
}