nixpkgs/pkgs/applications/science/chemistry/wxmacmolplt/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

44 lines
836 B
Nix
Raw Normal View History

{ stdenv
, lib
, fetchFromGitHub
, wxGTK32
, libGL
, libGLU
, pkg-config
, xorg
, autoreconfHook
}:
stdenv.mkDerivation rec {
pname = "wxmacmolplt";
2024-01-04 05:15:19 +00:00
version = "7.7.3";
src = fetchFromGitHub {
owner = "brettbode";
repo = pname;
rev = "v${version}";
2024-01-04 05:15:19 +00:00
hash = "sha256-gFGstyq9bMmBaIS4QE6N3EIC9GxRvyJYUr8DUvwRQBc=";
};
nativeBuildInputs = [ pkg-config autoreconfHook ];
buildInputs = [
wxGTK32
libGL
libGLU
xorg.libX11
xorg.libX11.dev
];
2023-10-05 16:09:35 +00:00
configureFlags = [ "LDFLAGS=-lGL" ];
enableParallelBuilding = true;
meta = with lib; {
2023-05-12 08:41:17 +00:00
description = "Graphical user interface for GAMESS-US";
homepage = "https://brettbode.github.io/wxmacmolplt/";
license = licenses.gpl2Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ sheepforce markuskowa ];
};
}