1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-15 00:54:46 +00:00
nixpkgs/pkgs/development/libraries/cpp-utilities/default.nix

37 lines
927 B
Nix
Raw Normal View History

{ stdenv
, lib
, fetchFromGitHub
, cmake
, cppunit
}:
2019-07-08 18:29:19 +01:00
stdenv.mkDerivation rec {
pname = "cpp-utilities";
2021-08-04 04:53:59 +01:00
version = "5.11.0";
2019-07-08 18:29:19 +01:00
src = fetchFromGitHub {
owner = "Martchus";
repo = pname;
rev = "v${version}";
2021-08-04 04:53:59 +01:00
sha256 = "sha256-ibZ/cj+pDLxUugz5jTc3FcVlytwS+R1RTtISbXe1mq4=";
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
preCheck = ''
checkFlagsArray+=(
"LD_LIBRARY_PATH=$PWD"
)
'';
2019-07-08 18:29:19 +01:00
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.gpl2Plus;
2019-07-08 18:29:19 +01:00
maintainers = with maintainers; [ doronbehar ];
platforms = platforms.linux;
};
}