9 stdenv.mkDerivation rec {
10 pname = "cpp-utilities";
13 src = fetchFromGitHub {
17 sha256 = "sha256-hPcmO2nzXCuhU2GjE0B1Bz9OkJ4mY2txFr+cWGaw1bo=";
20 nativeBuildInputs = [ cmake ];
21 checkInputs = [ cppunit ];
22 # Otherwise, tests fail since the resulting shared object libc++utilities.so is only available in PWD of the make files
23 checkFlagsArray = [ "LD_LIBRARY_PATH=$(PWD)" ];
27 homepage = "https://github.com/Martchus/cpp-utilities";
28 description = "Common C++ classes and routines used by @Martchus' applications featuring argument parser, IO and conversion utilities";
29 license = licenses.gpl2;
30 maintainers = with maintainers; [ doronbehar ];
31 platforms = platforms.linux;