summary refs log tree commit diff
path: root/pkgs/tools/misc/scanmem
diff options
context:
space:
mode:
authorMarius Bakke <m.bakke@warwick.ac.uk>2016-03-25 03:05:17 +0000
committerMarius Bakke <m.bakke@warwick.ac.uk>2016-03-25 03:05:17 +0000
commitb8dc71ef8a4c6c11ab9655539a06ec7fd67a3442 (patch)
tree42d299f345c290d2a534ae3cbe690a93b30964bc /pkgs/tools/misc/scanmem
parent42996e63f8366d72b16192ad7273f976d8942642 (diff)
downloadnixlib-b8dc71ef8a4c6c11ab9655539a06ec7fd67a3442.tar
nixlib-b8dc71ef8a4c6c11ab9655539a06ec7fd67a3442.tar.gz
nixlib-b8dc71ef8a4c6c11ab9655539a06ec7fd67a3442.tar.bz2
nixlib-b8dc71ef8a4c6c11ab9655539a06ec7fd67a3442.tar.lz
nixlib-b8dc71ef8a4c6c11ab9655539a06ec7fd67a3442.tar.xz
nixlib-b8dc71ef8a4c6c11ab9655539a06ec7fd67a3442.tar.zst
nixlib-b8dc71ef8a4c6c11ab9655539a06ec7fd67a3442.zip
scanmem: 0.15.2 -> 0.15.6
Diffstat (limited to 'pkgs/tools/misc/scanmem')
-rw-r--r--pkgs/tools/misc/scanmem/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/tools/misc/scanmem/default.nix b/pkgs/tools/misc/scanmem/default.nix
index e21da0deca2d..654ba4c1795c 100644
--- a/pkgs/tools/misc/scanmem/default.nix
+++ b/pkgs/tools/misc/scanmem/default.nix
@@ -1,13 +1,13 @@
 { stdenv, autoconf, automake, intltool, libtool, fetchFromGitHub, readline }:
 
 stdenv.mkDerivation rec {
-  version = "0.15.2";
+  version = "0.15.6";
   name = "scanmem-${version}";
   src = fetchFromGitHub {
     owner  = "scanmem";
     repo   = "scanmem";
     rev    = "v${version}";
-    sha256 = "0f93ac5rycf46q60flab5nl7ksadjls13axijg5j5wy1yif0k094";
+    sha256 = "16cw76ji3mp0sj8q0sz5wndavk10n0si1sm6kr5zpiws4sw047ii";
   };
   buildInputs = [ autoconf automake intltool libtool readline ];
   preConfigure = ''
@@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
     homepage = "https://github.com/scanmem/scanmem";
     description = "Memory scanner for finding and poking addresses in executing processes";
     maintainers = [ stdenv.lib.maintainers.chattered  ];
-    platforms = stdenv.lib.platforms.linux;
+    platforms = with stdenv.lib.platforms; linux ++ darwin;
     license = stdenv.lib.licenses.gpl3;
   };
 }