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

34 lines
906 B
Nix
Raw Normal View History

{ stdenv
, lib
, fetchFromGitHub
, fetchpatch
, cmake
, cppunit
}:
2019-07-08 18:29:19 +01:00
stdenv.mkDerivation rec {
pname = "cpp-utilities";
2021-01-18 13:39:46 +00:00
version = "5.10.0";
2019-07-08 18:29:19 +01:00
src = fetchFromGitHub {
owner = "Martchus";
repo = pname;
rev = "v${version}";
2021-01-18 13:39:46 +00:00
sha256 = "sha256-ZqpgnxI6Py+Xrf+MK852j+kE2JGFz15kWAXOqy+bjVc=";
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 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;
};
}