{ stdenv, fetchurl, which, gfortran, libGLU, xorg } : stdenv.mkDerivation rec { version = "5.9.3"; name = "molden-${version}"; src = fetchurl { url = "ftp://ftp.cmbi.ru.nl/pub/molgraph/molden/molden${version}.tar.gz"; sha256 = "18fz44g7zkm0xcx3w9hm049jv13af67ww7mb5b3kdhmza333a16q"; }; nativeBuildInputs = [ which ]; buildInputs = [ gfortran libGLU xorg.libX11 xorg.libXmu ]; patches = [ ./dont_register_file_types.patch ]; postPatch = '' substituteInPlace ./makefile --replace '-L/usr/X11R6/lib' "" \ --replace '-I/usr/X11R6/include' "" \ --replace '/usr/local/' $out/ \ --replace 'sudo' "" \ --replace '-C surf depend' '-C surf' sed -in '/^# DO NOT DELETE THIS LINE/q;' surf/Makefile ''; preInstall = '' mkdir -p $out/bin ''; enableParallelBuilding = true; meta = with stdenv.lib; { description = "Display and manipulate molecular structures"; homepage = http://www.cmbi.ru.nl/molden/; license = { fullName = "Free for academic/non-profit use"; url = http://www.cmbi.ru.nl/molden/CopyRight.html; free = false; }; platforms = platforms.linux; maintainers = with maintainers; [ markuskowa ]; }; }