3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/libraries/cpp-utilities/default.nix

28 lines
891 B
Nix
Raw Normal View History

2019-07-08 18:29:19 +01:00
{ stdenv, fetchFromGitHub, cmake, cppunit }:
stdenv.mkDerivation rec {
pname = "cpp-utilities";
2019-09-07 18:47:40 +01:00
version = "5.0.0";
2019-07-08 18:29:19 +01:00
src = fetchFromGitHub {
owner = "Martchus";
repo = pname;
rev = "v${version}";
2019-09-07 18:47:40 +01:00
sha256 = "031kiawmrp40sqgd9g5qd82ljglcm9xvynicsn4n8n4ngfgbnc0m";
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;
meta = with stdenv.lib; {
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;
};
}