summary refs log tree commit diff
path: root/pkgs/applications/science
diff options
context:
space:
mode:
authorMarkus Kowalewski <markus.kowalewski@fysik.su.se>2019-04-03 15:00:17 +0200
committerMarkus Kowalewski <markus.kowalewski@fysik.su.se>2019-04-03 15:00:17 +0200
commitc109aaa5cb6edfa6813d664ea6117ac77e883518 (patch)
tree0333c2619a3e3f927427c73f68ef1024d3608d43 /pkgs/applications/science
parent882247fc3fefbc869def6b60b32c099df23b6d57 (diff)
downloadnixpkgs-c109aaa5cb6edfa6813d664ea6117ac77e883518.tar
nixpkgs-c109aaa5cb6edfa6813d664ea6117ac77e883518.tar.gz
nixpkgs-c109aaa5cb6edfa6813d664ea6117ac77e883518.tar.bz2
nixpkgs-c109aaa5cb6edfa6813d664ea6117ac77e883518.tar.lz
nixpkgs-c109aaa5cb6edfa6813d664ea6117ac77e883518.tar.xz
nixpkgs-c109aaa5cb6edfa6813d664ea6117ac77e883518.tar.zst
nixpkgs-c109aaa5cb6edfa6813d664ea6117ac77e883518.zip
quantum-espresso: remove outdated makefile fix
Diffstat (limited to 'pkgs/applications/science')
-rw-r--r--pkgs/applications/science/chemistry/quantum-espresso/default.nix6
1 files changed, 0 insertions, 6 deletions
diff --git a/pkgs/applications/science/chemistry/quantum-espresso/default.nix b/pkgs/applications/science/chemistry/quantum-espresso/default.nix
index 829e82b7494..777b3499bed 100644
--- a/pkgs/applications/science/chemistry/quantum-espresso/default.nix
+++ b/pkgs/applications/science/chemistry/quantum-espresso/default.nix
@@ -20,12 +20,6 @@ stdenv.mkDerivation rec {
     patchShebangs configure
   '';
 
-  # remove after 6.4 version:
-  # makefile needs to ignore install directory easier than applying patch
-  preInstall = ''
-    printf "\n.PHONY: install\n" >> Makefile
-  '';
-
   buildInputs = [ fftw openblas gfortran ]
     ++ (stdenv.lib.optionals (mpi != null) [ mpi ]);