fontmatrix: init at 0.6.0

+21
+19
pkgs/applications/graphics/fontmatrix/default.nix
··· 1 + { stdenv, fetchurl, cmake, qt4 }: 2 + 3 + stdenv.mkDerivation rec { 4 + name = "fontmatrix-0.6.0"; 5 + src = fetchurl { 6 + url = "http://fontmatrix.be/archives/${name}-Source.tar.gz"; 7 + sha256 = "bcc5e929d95d2a0c9481d185144095c4e660255220a7ae6640298163ee77042c"; 8 + }; 9 + 10 + buildInputs = [ qt4 ]; 11 + 12 + nativeBuildInputs = [ cmake ]; 13 + 14 + meta = { 15 + description = "Fontmatrix is a free/libre font explorer for Linux, Windows and Mac"; 16 + homepage = http://fontmatrix.be/; 17 + license = stdenv.lib.licenses.gpl2; 18 + }; 19 + }
+2
pkgs/top-level/all-packages.nix
··· 1511 1511 withGTK = true; 1512 1512 }; 1513 1513 1514 + fontmatrix = callPackage ../applications/graphics/fontmatrix {}; 1515 + 1514 1516 foremost = callPackage ../tools/system/foremost { }; 1515 1517 1516 1518 forktty = callPackage ../os-specific/linux/forktty {};