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
54 lines
951 B
Nix
54 lines
951 B
Nix
{
|
|
stdenv,
|
|
lib,
|
|
fetchFromGitHub,
|
|
wxGTK32,
|
|
libGL,
|
|
libGLU,
|
|
pkg-config,
|
|
xorg,
|
|
autoreconfHook,
|
|
wrapGAppsHook4,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "wxmacmolplt";
|
|
version = "7.7.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "brettbode";
|
|
repo = "wxmacmolplt";
|
|
rev = "v${version}";
|
|
hash = "sha256-gFGstyq9bMmBaIS4QE6N3EIC9GxRvyJYUr8DUvwRQBc=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
autoreconfHook
|
|
wrapGAppsHook4
|
|
];
|
|
buildInputs = [
|
|
wxGTK32
|
|
libGL
|
|
libGLU
|
|
xorg.libX11
|
|
xorg.libX11.dev
|
|
];
|
|
|
|
configureFlags = [ "LDFLAGS=-lGL" ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with lib; {
|
|
description = "Graphical user interface for GAMESS-US";
|
|
mainProgram = "wxmacmolplt";
|
|
homepage = "https://brettbode.github.io/wxmacmolplt/";
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [
|
|
sheepforce
|
|
markuskowa
|
|
];
|
|
};
|
|
}
|