shtns: init at 3.5.1 (#151061)

This commit is contained in:
Bruno Bzeznik 2022-01-31 21:28:05 +01:00 committed by GitHub
parent d4e1518758
commit 77682cf879
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 24 additions and 0 deletions

View file

@ -0,0 +1,22 @@
{ lib, stdenv, fetchgit, fftw }:
stdenv.mkDerivation rec {
pname = "shtns";
version = "3.5.1";
src = fetchgit {
url = "https://bitbucket.org/nschaeff/shtns";
rev = "v${version}";
sha256 = "1ajrplhv7a2dvb3cn3n638281w0bzdcydvvwbg64awbjg622mdpd";
};
buildInputs = [ fftw ];
meta = with lib; {
description = "High performance library for Spherical Harmonic Transform";
homepage = "https://nschaeff.bitbucket.io/shtns/";
license = licenses.cecill21;
maintainers = [ maintainers.bzizou ];
platforms = platforms.linux;
};
}

View file

@ -32306,6 +32306,8 @@ with pkgs;
sherpa = callPackage ../applications/science/physics/sherpa {};
shtns = callPackage ../applications/science/physics/shtns { };
xfitter = callPackage ../applications/science/physics/xfitter {};
xflr5 = libsForQt5.callPackage ../applications/science/physics/xflr5 { };