spglib: 2.0.2 -> 2.1.0

This commit is contained in:
Markus Kowalewski 2023-09-17 12:42:08 +02:00
parent 9f0e5916c8
commit 23e1d1e4da

View file

@ -1,20 +1,22 @@
{ stdenv, lib, fetchFromGitHub, cmake, openmp }:
{ stdenv, lib, fetchFromGitHub, cmake, gtest, openmp }:
stdenv.mkDerivation rec {
pname = "spglib";
version = "2.0.2"; # N.B: if you change this, please update: pythonPackages.spglib
version = "2.1.0"; # N.B: if you change this, please update: pythonPackages.spglib
src = fetchFromGitHub {
owner = "spglib";
repo = "spglib";
rev = "v${version}";
sha256 = "sha256-8Voepj35CMbboL3Dc55Gc4+OLPTTSgqVQuvNcRQsqmU=";
hash = "sha256-EL3jkzyurc8fnzk9kAdTaEtLfLlLtmaVDFwChfCDOrQ=";
};
nativeBuildInputs = [ cmake ];
nativeBuildInputs = [ cmake gtest ];
buildInputs = lib.optionals stdenv.isDarwin [ openmp ];
doCheck = true;
meta = with lib; {
description = "C library for finding and handling crystal symmetries";
homepage = "https://spglib.github.io/spglib/";