Merge pull request #214931 from sheepforce/wxmacmolplt

wxmacmolplt: init at 7.7.2
This commit is contained in:
markuskowa 2023-02-06 19:23:33 +01:00 committed by GitHub
commit f6b2d49d65
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 43 additions and 0 deletions

View File

@ -0,0 +1,41 @@
{ stdenv
, lib
, fetchFromGitHub
, wxGTK32
, libGL
, libGLU
, pkg-config
, xorg
, autoreconfHook
}:
stdenv.mkDerivation rec {
pname = "wxmacmolplt";
version = "7.7.2";
src = fetchFromGitHub {
owner = "brettbode";
repo = pname;
rev = "v${version}";
hash = "sha256-sNxCjIEJUrDWtcUqBQqvanNfgNQ7T4cabYy+x9D1U+Q=";
};
nativeBuildInputs = [ pkg-config autoreconfHook ];
buildInputs = [
wxGTK32
libGL
libGLU
xorg.libX11
xorg.libX11.dev
];
enableParallelBuilding = true;
meta = with lib; {
description = "Graphical user inteface for GAMESS-US";
homepage = "https://brettbode.github.io/wxmacmolplt/";
license = licenses.gpl2Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ sheepforce markuskowa ];
};
}

View File

@ -36045,6 +36045,8 @@ with pkgs;
siesta-mpi = callPackage ../applications/science/chemistry/siesta { useMpi = true; };
wxmacmolplt = callPackage ../applications/science/chemistry/wxmacmolplt { };
### SCIENCE/GEOMETRY
antiprism = callPackage ../applications/science/geometry/antiprism { };