2021-01-23 08:47:37 +00:00
|
|
|
{ stdenv
|
|
|
|
, lib
|
2020-02-25 08:36:57 +00:00
|
|
|
, fetchFromGitHub
|
|
|
|
, fetchpatch
|
|
|
|
, cmake
|
|
|
|
, cppunit
|
|
|
|
}:
|
2019-07-08 18:29:19 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "cpp-utilities";
|
2021-02-04 03:30:28 +00:00
|
|
|
version = "5.10.1";
|
2019-07-08 18:29:19 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Martchus";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2021-02-04 03:30:28 +00:00
|
|
|
sha256 = "sha256-8upRrk2x2gaS+JwCmZblrRSRxy0uNfFLTW7ua2ix2wI=";
|
2019-07-08 18:29:19 +01: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
|
|
|
|
checkFlagsArray = [ "LD_LIBRARY_PATH=$(PWD)" ];
|
|
|
|
doCheck = true;
|
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2019-07-08 18:29:19 +01: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.gpl2;
|
|
|
|
maintainers = with maintainers; [ doronbehar ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|