summary refs log tree commit diff
diff options
context:
space:
mode:
authormarkuskowa <markus.kowalewski@gmail.com>2021-06-02 14:36:13 +0200
committerGitHub <noreply@github.com>2021-06-02 14:36:13 +0200
commitcdbf7da30199d924f9564a3b06151b862b5feb03 (patch)
tree95f47cb851492f1f77755af2fa9ab4e2697a5a13
parentd8ee8e105cbc64834a37c846cf715cff070f336f (diff)
parentdd9bc408afaf8771982c12a7f5be61919883c967 (diff)
downloadnixpkgs-cdbf7da30199d924f9564a3b06151b862b5feb03.tar
nixpkgs-cdbf7da30199d924f9564a3b06151b862b5feb03.tar.gz
nixpkgs-cdbf7da30199d924f9564a3b06151b862b5feb03.tar.bz2
nixpkgs-cdbf7da30199d924f9564a3b06151b862b5feb03.tar.lz
nixpkgs-cdbf7da30199d924f9564a3b06151b862b5feb03.tar.xz
nixpkgs-cdbf7da30199d924f9564a3b06151b862b5feb03.tar.zst
nixpkgs-cdbf7da30199d924f9564a3b06151b862b5feb03.zip
Merge pull request #110590 from markuskowa/upd-lammps
lammps: stable_22Aug2018 -> stable_29Oct2020
-rw-r--r--pkgs/applications/science/molecular-dynamics/lammps/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/applications/science/molecular-dynamics/lammps/default.nix b/pkgs/applications/science/molecular-dynamics/lammps/default.nix
index 51ce64115ea..c377d961820 100644
--- a/pkgs/applications/science/molecular-dynamics/lammps/default.nix
+++ b/pkgs/applications/science/molecular-dynamics/lammps/default.nix
@@ -12,14 +12,14 @@ let packages = [
 in
 stdenv.mkDerivation rec {
   # LAMMPS has weird versioning converted to ISO 8601 format
-  version = "stable_22Aug2018";
+  version = "stable_29Oct2020";
   pname = "lammps";
 
   src = fetchFromGitHub {
     owner = "lammps";
     repo = "lammps";
     rev = version;
-    sha256 = "1dlifm9wm1jcw2zwal3fnzzl41ng08c7v48w6hx2mz84zljg1nsj";
+    sha256 = "1rmi9r5wj2z49wg43xyhqn9sm37n95cyli3g7vrqk3ww35mmh21q";
   };
 
   passthru = {
@@ -59,8 +59,8 @@ stdenv.mkDerivation rec {
       funding from the DOE. It is an open-source code, distributed freely
       under the terms of the GNU Public License (GPL).
       '';
-    homepage = "http://lammps.sandia.gov";
-    license = licenses.gpl2;
+    homepage = "https://lammps.sandia.gov";
+    license = licenses.gpl2Plus;
     platforms = platforms.linux;
     maintainers = [ maintainers.costrouc ];
   };