mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 17:03:01 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
55 lines
1.3 KiB
Nix
55 lines
1.3 KiB
Nix
{ lib, stdenv
|
|
, fetchurl
|
|
, cmake
|
|
, gtest
|
|
, blas
|
|
, fftw
|
|
, liblapack
|
|
, gfortran
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "it++";
|
|
version = "4.3.1";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/itpp/itpp-${version}.tar.bz2";
|
|
sha256 = "0xxqag9wi0lg78xgw7b40rp6wxqp5grqlbs9z0ifvdfzqlhpcwah";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake gfortran ];
|
|
buildInputs = [
|
|
fftw
|
|
liblapack
|
|
|
|
# NOTE: OpenBLAS doesn't work here because IT++ doesn't pass aligned
|
|
# buffers, which causes segfaults in the optimized kernels :-(
|
|
blas
|
|
];
|
|
|
|
cmakeFlags = [
|
|
"-DCMAKE_CXX_FLAGS=-std=c++14"
|
|
"-DBLAS_FOUND:BOOL=TRUE"
|
|
"-DBLAS_LIBRARIES:STRING=${blas}/lib/libblas.so"
|
|
"-DLAPACK_FOUND:BOOL=TRUE"
|
|
"-DLAPACK_LIBRARIES:STRING=${liblapack}/lib/liblapack.so"
|
|
"-DGTEST_DIR:PATH=${gtest.src}/googletest"
|
|
];
|
|
|
|
doCheck = true;
|
|
|
|
checkPhase = ''
|
|
./gtests/itpp_gtests
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "IT++ is a C++ library of mathematical, signal processing and communication classes and functions";
|
|
mainProgram = "itpp-config";
|
|
homepage = "https://itpp.sourceforge.net/";
|
|
license = licenses.gpl3;
|
|
platforms = platforms.unix;
|
|
maintainers = [ ];
|
|
broken = stdenv.hostPlatform.isDarwin; # never built on Hydra https://hydra.nixos.org/job/nixpkgs/trunk/itpp.x86_64-darwin
|
|
};
|
|
}
|