nixpkgs/pkgs/development/libraries/cpp-utilities/default.nix

37 lines
927 B
Nix
Raw Normal View History

{ stdenv
, lib
, fetchFromGitHub
, cmake
, cppunit
}:
2019-07-08 19:29:19 +02:00
stdenv.mkDerivation rec {
pname = "cpp-utilities";
2021-07-08 04:05:35 +02:00
version = "5.10.5";
2019-07-08 19:29:19 +02:00
src = fetchFromGitHub {
owner = "Martchus";
repo = pname;
rev = "v${version}";
2021-07-08 04:05:35 +02:00
sha256 = "sha256-1GAZKMfA2cB/7/TZfV+WOvjlu0sWq1loOauX4EfHogA=";
2019-07-08 19:29:19 +02:00
};
nativeBuildInputs = [ cmake ];
checkInputs = [ cppunit ];
# Otherwise, tests fail since the resulting shared object libc++utilities.so is only available in PWD of the make files
preCheck = ''
checkFlagsArray+=(
"LD_LIBRARY_PATH=$PWD"
)
'';
2019-07-08 19:29:19 +02:00
doCheck = true;
meta = with lib; {
2019-07-08 19:29:19 +02:00
homepage = "https://github.com/Martchus/cpp-utilities";
description = "Common C++ classes and routines used by @Martchus' applications featuring argument parser, IO and conversion utilities";
license = licenses.gpl2Plus;
2019-07-08 19:29:19 +02:00
maintainers = with maintainers; [ doronbehar ];
platforms = platforms.linux;
};
}