8 stdenv.mkDerivation rec {
9 pname = "cpp-utilities";
12 src = fetchFromGitHub {
16 sha256 = "sha256-KOvRNo8qd8nXhh/f3uAN7jOsNMTX8dJRGUHJXP+FdEs=";
19 nativeBuildInputs = [ cmake ];
20 checkInputs = [ cppunit ];
21 # Otherwise, tests fail since the resulting shared object libc++utilities.so is only available in PWD of the make files
24 "LD_LIBRARY_PATH=$PWD"
30 homepage = "https://github.com/Martchus/cpp-utilities";
31 description = "Common C++ classes and routines used by @Martchus' applications featuring argument parser, IO and conversion utilities";
32 license = licenses.gpl2Plus;
33 maintainers = with maintainers; [ doronbehar ];
34 platforms = platforms.linux;