2017-03-18 23:30:57 +00:00
|
|
|
{ stdenv, fetchFromGitHub, cmake, qt4 }:
|
2015-12-11 13:35:04 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "fontmatrix";
|
2017-03-18 23:30:57 +00:00
|
|
|
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" ];
|
|
|
|
|
2017-03-18 23:30:57 +00:00
|
|
|
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";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/fontmatrix/fontmatrix";
|
2017-03-18 23:30:57 +00:00
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.linux;
|
2015-12-11 13:35:04 +00:00
|
|
|
};
|
|
|
|
}
|