about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/spectra/default.nix
blob: 1fc3ccd7576536bb4b09d1c06699a4f65d9eb1a1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{ lib
, stdenv
, fetchFromGitHub
, cmake
, eigen
}:

stdenv.mkDerivation rec {
  pname = "spectra";
  version = "1.0.1";

  src = fetchFromGitHub {
    owner = "yixuan";
    repo = pname;
    rev = "v${version}";
    sha256 = "sha256-HaJmMo4jYmO/j53/nHrL3bvdQMAvp4Nuhhe8Yc7pL88=";
  };

  nativeBuildInputs = [ cmake ];

  propagatedBuildInputs = [ eigen ];

  meta = with lib; {
    homepage = "https://spectralib.org/";
    description = "A C++ library for large scale eigenvalue problems, built on top of Eigen";
    license = licenses.mpl20;
    maintainers = with maintainers; [ vonfry ];
    platforms = platforms.unix;
  };
}