nixpkgs/pkgs/applications/graphics/fontmatrix/default.nix

23 lines
586 B
Nix
Raw Normal View History

2015-12-11 13:35:04 +00:00
{ 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 ];
2016-08-04 08:40:28 +01:00
hardeningDisable = [ "format" ];
2015-12-11 13:35:04 +00:00
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;
2015-12-11 13:35:04 +00:00
};
}