push sheeet
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s

This commit is contained in:
Dark Steveneq
2025-10-09 14:15:47 +02:00
commit 646b892680
49168 changed files with 5897842 additions and 0 deletions

View File

@@ -0,0 +1,70 @@
{
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 = "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 ];
};
}

View File

@@ -0,0 +1,61 @@
{
stdenv,
lib,
desktop-file-utils,
fetchurl,
glib,
gettext,
gtk4,
libadwaita,
meson,
ninja,
pkg-config,
wrapGAppsHook4,
gnome,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "d-spy";
version = "48.0";
outputs = [
"out"
"dev"
];
src = fetchurl {
url = "mirror://gnome/sources/d-spy/${lib.versions.major finalAttrs.version}/d-spy-${finalAttrs.version}.tar.xz";
hash = "sha256-D3oJAZBGGU2X/Dw0KzhOocOA4Qqc/IAlv83lfVlcODA=";
};
nativeBuildInputs = [
meson
ninja
pkg-config
desktop-file-utils
wrapGAppsHook4
gettext
glib
];
buildInputs = [
glib
gtk4
libadwaita
];
passthru = {
updateScript = gnome.updateScript {
packageName = "d-spy";
};
};
meta = with lib; {
description = "D-Bus exploration tool";
mainProgram = "d-spy";
homepage = "https://gitlab.gnome.org/GNOME/d-spy";
license = licenses.gpl3Plus;
teams = [ teams.gnome ];
platforms = platforms.linux;
};
})