forked from mirrors/nixpkgs
fontmatrix: init at 0.6.0
This commit is contained in:
parent
710f603d2b
commit
b0bb9cd5fe
19
pkgs/applications/graphics/fontmatrix/default.nix
Normal file
19
pkgs/applications/graphics/fontmatrix/default.nix
Normal file
|
@ -0,0 +1,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;
|
||||
};
|
||||
}
|
|
@ -1511,6 +1511,8 @@ let
|
|||
withGTK = true;
|
||||
};
|
||||
|
||||
fontmatrix = callPackage ../applications/graphics/fontmatrix {};
|
||||
|
||||
foremost = callPackage ../tools/system/foremost { };
|
||||
|
||||
forktty = callPackage ../os-specific/linux/forktty {};
|
||||
|
|
Loading…
Reference in a new issue