summary refs log tree commit diff
path: root/pkgs/os-specific/linux/dmtcp
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2019-10-12 13:02:27 -0700
committerRenaud <c0bw3b@users.noreply.github.com>2019-10-12 22:02:27 +0200
commit89b78283178728f83a4541865a23f254b1361ca9 (patch)
treee1a083151a76cdbe47dcd000096f38211db9a00d /pkgs/os-specific/linux/dmtcp
parentd4f085036b34cba3c60cc8c9ee7d9db965404b1f (diff)
downloadnixpkgs-89b78283178728f83a4541865a23f254b1361ca9.tar
nixpkgs-89b78283178728f83a4541865a23f254b1361ca9.tar.gz
nixpkgs-89b78283178728f83a4541865a23f254b1361ca9.tar.bz2
nixpkgs-89b78283178728f83a4541865a23f254b1361ca9.tar.lz
nixpkgs-89b78283178728f83a4541865a23f254b1361ca9.tar.xz
nixpkgs-89b78283178728f83a4541865a23f254b1361ca9.tar.zst
nixpkgs-89b78283178728f83a4541865a23f254b1361ca9.zip
dmtcp: 2.5.2 -> 2.6.0 (#69521)
* dmtcp: 2.5.2 -> 2.6.0

Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/dmtcp/versions

* dmtcp: disable on ARM and Darwin
Diffstat (limited to 'pkgs/os-specific/linux/dmtcp')
-rw-r--r--pkgs/os-specific/linux/dmtcp/default.nix15
1 files changed, 8 insertions, 7 deletions
diff --git a/pkgs/os-specific/linux/dmtcp/default.nix b/pkgs/os-specific/linux/dmtcp/default.nix
index 1d67b16a492..0f7f2f9817a 100644
--- a/pkgs/os-specific/linux/dmtcp/default.nix
+++ b/pkgs/os-specific/linux/dmtcp/default.nix
@@ -2,13 +2,13 @@
 
 stdenv.mkDerivation rec {
   pname = "dmtcp";
-  version = "2.5.2";
+  version = "2.6.0";
 
   src = fetchFromGitHub {
-    owner = "dmtcp";
-    repo = "dmtcp";
+    owner = pname;
+    repo = pname;
     rev = version;
-    sha256 = "1sq38in4wk855yhfnzbs9xpnps97fhja93w08xjmx7szzm33g5a8";
+    sha256 = "01skyhr573w1dygvkwz66lvir2jsq443fjwkysglwxvmrdfz9kwd";
   };
 
   dontDisableStatic = true;
@@ -33,7 +33,7 @@ stdenv.mkDerivation rec {
       --replace "os.getenv('USER')" "\"nixbld1\""
   '';
 
-  meta = {
+  meta = with stdenv.lib; {
     description = "Distributed MultiThreaded Checkpointing";
     longDescription = ''
       DMTCP (Distributed MultiThreaded Checkpointing) is a tool to
@@ -41,7 +41,8 @@ stdenv.mkDerivation rec {
       programs spread across many machines and connected by sockets. It does
       not modify the user's program or the operating system.
     '';
-    homepage = http://dmtcp.sourceforge.net/;
-    license = stdenv.lib.licenses.lgpl3Plus; # most files seem this or LGPL-2.1+
+    homepage = "http://dmtcp.sourceforge.net/";
+    license = licenses.lgpl3Plus; # most files seem this or LGPL-2.1+
+    platforms = intersectLists platforms.linux platforms.x86; # broken on ARM and Darwin
   };
 }