fmt: minor refactor

Add separate build outputs, enable parallel building, fix platforms,
adapt to styleguide.
This commit is contained in:
Stefan Wiehler 2018-10-28 09:56:44 +01:00
parent 408e8ca680
commit b23d92f8f2

View file

@ -3,29 +3,41 @@
stdenv.mkDerivation rec {
version = "5.2.1";
name = "fmt-${version}";
src = fetchFromGitHub {
owner = "fmtlib";
repo = "fmt";
rev = "${version}";
sha256 = "1cd8yq8va457iir1hlf17ksx11fx2hlb8i4jml8gj1875pizm0pk";
};
outputs = [ "out" "dev" ];
nativeBuildInputs = [ cmake ];
cmakeFlags = [
"-DFMT_TEST=TRUE"
"-DBUILD_SHARED_LIBS=${if enableShared then "TRUE" else "FALSE"}"
];
enableParallelBuilding = true;
doCheck = true;
# preCheckHook ensures the test binaries can find libfmt.so.5
preCheck = if enableShared
then "export LD_LIBRARY_PATH=\"$PWD\""
else "";
cmakeFlags = [ "-DFMT_TEST=yes"
"-DBUILD_SHARED_LIBS=${if enableShared then "ON" else "OFF"}" ];
meta = with stdenv.lib; {
homepage = http://fmtlib.net/;
description = "Small, safe and fast formatting library";
longDescription = ''
fmt (formerly cppformat) is an open-source formatting library. It can be
used as a fast and safe alternative to printf and IOStreams.
'';
homepage = http://fmtlib.net/;
downloadPage = https://github.com/fmtlib/fmt/;
maintainers = [ maintainers.jdehaas ];
license = licenses.bsd2;
platforms = platforms.unix;
platforms = platforms.all;
};
}