Skip to content

Commit

Permalink
scanmem: 0.15.6 -> 0.16
Browse files Browse the repository at this point in the history
  • Loading branch information
ndowens authored and bjornfor committed Mar 5, 2017
1 parent 199f570 commit cc9b960
Showing 1 changed file with 11 additions and 7 deletions.
18 changes: 11 additions & 7 deletions pkgs/tools/misc/scanmem/default.nix
@@ -1,23 +1,27 @@
{ stdenv, autoconf, automake, intltool, libtool, fetchFromGitHub, readline }:

stdenv.mkDerivation rec {
version = "0.15.6";
version = "0.16";
name = "scanmem-${version}";

src = fetchFromGitHub {
owner = "scanmem";
repo = "scanmem";
rev = "v${version}";
sha256 = "16cw76ji3mp0sj8q0sz5wndavk10n0si1sm6kr5zpiws4sw047ii";
sha256 = "131rx6cpnlz2x36r0ry80gqapmxpz2qc3h0040xhvp7ydmd4fyjd";
};
buildInputs = [ autoconf automake intltool libtool readline ];

nativeBuildInputs = [ autoconf automake intltool libtool ];
buildInputs = [ readline ];

preConfigure = ''
./autogen.sh
'';
meta = {
meta = with stdenv.lib; {
homepage = "https://github.com/scanmem/scanmem";
description = "Memory scanner for finding and poking addresses in executing processes";
maintainers = [ stdenv.lib.maintainers.chattered ];
platforms = with stdenv.lib.platforms; linux ++ darwin;
license = stdenv.lib.licenses.gpl3;
maintainers = [ maintainers.chattered ];
platforms = with platforms; linux ++ darwin;
license = licenses.gpl3;
};
}

0 comments on commit cc9b960

Please sign in to comment.