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

45 lines
1.3 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, which, gfortran, libGLU, xorg } :
2018-01-16 07:00:54 +00:00
stdenv.mkDerivation rec {
2019-08-15 07:35:34 +00:00
version = "6.2";
pname = "molden";
2018-01-16 07:00:54 +00:00
src = fetchurl {
url = "ftp://ftp.cmbi.ru.nl/pub/molgraph/molden/molden${version}.tar.gz";
2019-08-15 07:35:34 +00:00
sha256 = "01m5p7v5pz1fi77var50sp1bzlvdckwr6kn4wanvic2jmvgp9q5n";
2018-01-16 07:00:54 +00:00
};
nativeBuildInputs = [ which ];
buildInputs = [ gfortran libGLU xorg.libX11 xorg.libXmu ];
2018-01-16 07:00:54 +00:00
patches = [ ./dont_register_file_types.patch ];
2018-01-16 07:00:54 +00:00
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/";
2018-01-16 07:00:54 +00:00
license = {
fullName = "Free for academic/non-profit use";
url = "http://www.cmbi.ru.nl/molden/CopyRight.html";
2018-01-16 07:00:54 +00:00
free = false;
};
platforms = platforms.linux;
maintainers = with maintainers; [ markuskowa ];
};
}