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

27 lines
640 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, cmake, qt4 }:
2015-12-11 13:35:04 +00:00
stdenv.mkDerivation rec {
name = "fontmatrix-${version}";
version = "0.6.0";
src = fetchFromGitHub {
owner = "fontmatrix";
repo = "fontmatrix";
rev = "v${version}";
sha256 = "0aqndj1jhm6hjpwmj1qm92z2ljh7w78a5ff5ag47qywqha1ngn05";
2015-12-11 13:35:04 +00:00
};
buildInputs = [ qt4 ];
nativeBuildInputs = [ cmake ];
2016-08-04 07:40:28 +00:00
hardeningDisable = [ "format" ];
meta = with stdenv.lib; {
2015-12-11 13:35:04 +00:00
description = "Fontmatrix is a free/libre font explorer for Linux, Windows and Mac";
homepage = https://github.com/fontmatrix/fontmatrix;
license = licenses.gpl2;
platforms = platforms.linux;
2015-12-11 13:35:04 +00:00
};
}