2017-06-02 21:55:16 +01:00
|
|
|
{ stdenv, fetchurl, makeDesktopItem
|
|
|
|
, python3, python3Packages
|
|
|
|
, glew, freeglut, libpng, libxml2, tk, freetype }:
|
|
|
|
|
|
|
|
|
|
|
|
with stdenv.lib;
|
2017-02-22 00:35:09 +00:00
|
|
|
|
|
|
|
let
|
2017-06-02 15:34:16 +01:00
|
|
|
pname = "pymol";
|
|
|
|
ver_maj = "1.8";
|
|
|
|
ver_min = "4";
|
|
|
|
version = "${ver_maj}.${ver_min}.0";
|
|
|
|
description = "A Python-enhanced molecular graphics tool";
|
|
|
|
|
|
|
|
desktopItem = makeDesktopItem {
|
|
|
|
name = "${pname}";
|
|
|
|
exec = "${pname}";
|
|
|
|
desktopName = "PyMol Molecular Graphics System";
|
|
|
|
genericName = "Molecular Modeller";
|
|
|
|
comment = description;
|
|
|
|
mimeType = "chemical/x-pdb;chemical/x-mdl-molfile;chemical/x-mol2;chemical/seq-aa-fasta;chemical/seq-na-fasta;chemical/x-xyz;chemical/x-mdl-sdf;";
|
|
|
|
categories = "Graphics;Education;Science;Chemistry;";
|
|
|
|
};
|
2017-02-22 00:35:09 +00:00
|
|
|
in
|
2017-06-02 15:34:16 +01:00
|
|
|
python3Packages.buildPythonApplication {
|
2017-02-22 00:35:09 +00:00
|
|
|
name = "pymol-${version}";
|
|
|
|
src = fetchurl {
|
2017-06-02 15:34:16 +01:00
|
|
|
url = "mirror://sourceforge/project/pymol/pymol/${ver_maj}/pymol-v${version}.tar.bz2";
|
2017-02-22 00:35:09 +00:00
|
|
|
sha256 = "0yfj8g5yic9zz6f0bw2n8h6ifvgsn8qvhq84alixsi28wzppn55n";
|
|
|
|
};
|
|
|
|
|
2017-06-02 15:34:16 +01:00
|
|
|
buildInputs = [ python3Packages.numpy glew freeglut libpng libxml2 tk freetype ];
|
2017-02-22 00:35:09 +00:00
|
|
|
NIX_CFLAGS_COMPILE = "-I ${libxml2.dev}/include/libxml2";
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
python setup.py install --home=$out
|
2017-06-02 15:34:16 +01:00
|
|
|
cp -r ${desktopItem}/share/ $out/
|
|
|
|
runHook postInstall
|
|
|
|
'';
|
|
|
|
|
2017-06-02 21:55:16 +01:00
|
|
|
postInstall = with python3Packages; ''
|
2017-06-02 15:34:16 +01:00
|
|
|
wrapProgram $out/bin/pymol \
|
2017-06-02 21:55:16 +01:00
|
|
|
--prefix PYTHONPATH : ${makeSearchPathOutput "lib" python3.sitePackages [ Pmw tkinter ]}
|
2017-02-22 00:35:09 +00:00
|
|
|
'';
|
|
|
|
|
2017-06-02 21:55:16 +01:00
|
|
|
meta = {
|
2017-06-02 15:34:16 +01:00
|
|
|
description = description;
|
2017-02-22 00:35:09 +00:00
|
|
|
homepage = "https://www.pymol.org/";
|
2017-02-22 07:48:42 +00:00
|
|
|
license = licenses.psfl;
|
2017-02-22 00:35:09 +00:00
|
|
|
};
|
|
|
|
}
|