about summary refs log tree commit diff
path: root/pkgs/tools/misc/scanmem
diff options
context:
space:
mode:
authorPhil Scott <me@philscotted.com>2015-08-23 07:54:13 +0000
committerBjørn Forsman <bjorn.forsman@gmail.com>2015-08-23 15:25:52 +0200
commit3bbd79aaa65062f81311300668dd58d7b66c14a3 (patch)
tree5ce73fef08479d3aef59c2bb62821b1986d812da /pkgs/tools/misc/scanmem
parentef721079ca6911ba5e2fdba83d346f24cb9969e9 (diff)
downloadnixlib-3bbd79aaa65062f81311300668dd58d7b66c14a3.tar
nixlib-3bbd79aaa65062f81311300668dd58d7b66c14a3.tar.gz
nixlib-3bbd79aaa65062f81311300668dd58d7b66c14a3.tar.bz2
nixlib-3bbd79aaa65062f81311300668dd58d7b66c14a3.tar.lz
nixlib-3bbd79aaa65062f81311300668dd58d7b66c14a3.tar.xz
nixlib-3bbd79aaa65062f81311300668dd58d7b66c14a3.tar.zst
nixlib-3bbd79aaa65062f81311300668dd58d7b66c14a3.zip
scanmem: init at 0.15.2
[Bjørn: Remove trailing dot in description.]
Diffstat (limited to 'pkgs/tools/misc/scanmem')
-rw-r--r--pkgs/tools/misc/scanmem/default.nix23
1 files changed, 23 insertions, 0 deletions
diff --git a/pkgs/tools/misc/scanmem/default.nix b/pkgs/tools/misc/scanmem/default.nix
new file mode 100644
index 000000000000..e21da0deca2d
--- /dev/null
+++ b/pkgs/tools/misc/scanmem/default.nix
@@ -0,0 +1,23 @@
+{ stdenv, autoconf, automake, intltool, libtool, fetchFromGitHub, readline }:
+
+stdenv.mkDerivation rec {
+  version = "0.15.2";
+  name = "scanmem-${version}";
+  src = fetchFromGitHub {
+    owner  = "scanmem";
+    repo   = "scanmem";
+    rev    = "v${version}";
+    sha256 = "0f93ac5rycf46q60flab5nl7ksadjls13axijg5j5wy1yif0k094";
+  };
+  buildInputs = [ autoconf automake intltool libtool readline ];
+  preConfigure = ''
+    ./autogen.sh
+  '';
+  meta = {
+    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;
+    license = stdenv.lib.licenses.gpl3;
+  };
+}