mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-09 06:23:36 +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.
42 lines
1.5 KiB
Nix
42 lines
1.5 KiB
Nix
{ clangStdenv, fetchFromGitHub, fetchpatch, catch2, rang, fmt, yaml-cpp, cmake
|
|
, eigen, lua, luaPackages, liblapack, blas, lib, boost, gsl }:
|
|
|
|
clangStdenv.mkDerivation rec {
|
|
version = "1.0.1";
|
|
pname = "d-SEAMS";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "d-SEAMS";
|
|
repo = "seams-core";
|
|
rev = "v${version}";
|
|
sha256 = "03zhhl9vhi3rhc3qz1g3zb89jksgpdlrk15fcr8xcz8pkj6r5b1i";
|
|
};
|
|
|
|
patches = [
|
|
(fetchpatch {
|
|
name = "use_newer_cxxopts_which_builds_with_clang11.patch";
|
|
url = "https://github.com/d-SEAMS/seams-core/commit/f6156057e43d0aa1a0df9de67d8859da9c30302d.patch";
|
|
hash = "sha256-PLbT1lqdw+69lIHH96MPcGRjfIeZyb88vc875QLYyqw=";
|
|
})
|
|
];
|
|
nativeBuildInputs = [ cmake lua luaPackages.luafilesystem ];
|
|
buildInputs = [ fmt rang yaml-cpp eigen catch2 boost gsl liblapack blas ];
|
|
|
|
meta = with lib; {
|
|
description =
|
|
"d-SEAMS: Deferred Structural Elucidation Analysis for Molecular Simulations";
|
|
mainProgram = "yodaStruct";
|
|
longDescription = ''
|
|
d-SEAMS, is a free and open-source postprocessing engine for the analysis
|
|
of molecular dynamics trajectories, which is specifically able to
|
|
qualitatively classify ice structures in both strong-confinement and bulk
|
|
systems. The engine is in C++, with extensions via the Lua scripting
|
|
interface.
|
|
'';
|
|
homepage = "https://dseams.info";
|
|
license = licenses.gpl3Plus;
|
|
platforms = [ "x86_64-linux" ];
|
|
maintainers = [ maintainers.HaoZeke ];
|
|
};
|
|
}
|