3
0
Fork 0
forked from mirrors/nixpkgs

fcft: enable tests, use release build type

This commit is contained in:
sternenseemann 2020-08-17 14:49:42 +02:00
parent 15affbfbd5
commit 5bb0129062

View file

@ -1,5 +1,5 @@
{ stdenv, lib, fetchgit, pkg-config, meson, ninja, scdoc
,freetype, fontconfig, pixman, tllist }:
,freetype, fontconfig, pixman, tllist, check }:
stdenv.mkDerivation rec {
pname = "fcft";
@ -13,6 +13,11 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ pkg-config meson ninja scdoc ];
buildInputs = [ freetype fontconfig pixman tllist ];
checkInputs = [ check ];
mesonFlags = [ "--buildtype=release" ];
doCheck = true;
meta = with lib; {
homepage = "https://codeberg.org/dnkl/fcft";