Loading pkgs/development/libraries/numcpp/default.nix 0 → 100644 +48 −0 Original line number Diff line number Diff line { lib, stdenv, fetchFromGitHub, cmake, boost, python3, gtest, }: stdenv.mkDerivation (finalAttrs: { pname = "numcpp"; version = "2.11.0"; src = fetchFromGitHub { owner = "dpilger26"; repo = "NumCpp"; rev = "Version_${finalAttrs.version}"; hash = "sha256-IAku1bcaMkawZxpQbvxcS6VX07ogw4UGo1DX2Wa8xwU="; }; nativeCheckInputs = [gtest python3]; nativeBuildInputs = [cmake]; buildInputs = [boost]; cmakeFlags = lib.optionals finalAttrs.finalPackage.doCheck [ "-DBUILD_TESTS=ON" "-DBUILD_MULTIPLE_TEST=ON" ]; doCheck = !stdenv.isDarwin && !stdenv.hostPlatform.isStatic; postInstall = '' substituteInPlace $out/share/NumCpp/cmake/NumCppConfig.cmake \ --replace "\''${PACKAGE_PREFIX_DIR}/" "" ''; NIX_CFLAGS_COMPILE="-Wno-error"; meta = with lib; { description = "A Templatized Header Only C++ Implementation of the Python NumPy Library"; homepage = "https://github.com/dpilger26/NumCpp"; license = licenses.mit; maintainers = with maintainers; [spalf]; platforms = platforms.unix; }; }) pkgs/top-level/all-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -23903,6 +23903,8 @@ with pkgs; ntrack = callPackage ../development/libraries/ntrack { }; numcpp = callPackage ../development/libraries/numcpp { }; nuraft = callPackage ../development/libraries/nuraft { }; nuspell = callPackage ../development/libraries/nuspell { }; Loading
pkgs/development/libraries/numcpp/default.nix 0 → 100644 +48 −0 Original line number Diff line number Diff line { lib, stdenv, fetchFromGitHub, cmake, boost, python3, gtest, }: stdenv.mkDerivation (finalAttrs: { pname = "numcpp"; version = "2.11.0"; src = fetchFromGitHub { owner = "dpilger26"; repo = "NumCpp"; rev = "Version_${finalAttrs.version}"; hash = "sha256-IAku1bcaMkawZxpQbvxcS6VX07ogw4UGo1DX2Wa8xwU="; }; nativeCheckInputs = [gtest python3]; nativeBuildInputs = [cmake]; buildInputs = [boost]; cmakeFlags = lib.optionals finalAttrs.finalPackage.doCheck [ "-DBUILD_TESTS=ON" "-DBUILD_MULTIPLE_TEST=ON" ]; doCheck = !stdenv.isDarwin && !stdenv.hostPlatform.isStatic; postInstall = '' substituteInPlace $out/share/NumCpp/cmake/NumCppConfig.cmake \ --replace "\''${PACKAGE_PREFIX_DIR}/" "" ''; NIX_CFLAGS_COMPILE="-Wno-error"; meta = with lib; { description = "A Templatized Header Only C++ Implementation of the Python NumPy Library"; homepage = "https://github.com/dpilger26/NumCpp"; license = licenses.mit; maintainers = with maintainers; [spalf]; platforms = platforms.unix; }; })
pkgs/top-level/all-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -23903,6 +23903,8 @@ with pkgs; ntrack = callPackage ../development/libraries/ntrack { }; numcpp = callPackage ../development/libraries/numcpp { }; nuraft = callPackage ../development/libraries/nuraft { }; nuspell = callPackage ../development/libraries/nuspell { };