Merge pull request #34154 from WilliButz/update-scanmem

scanmem: 0.16 -> 0.17
This commit is contained in:
Jörg Thalheim 2018-01-22 18:54:23 +00:00 committed by GitHub
commit 996a5adcdf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,26 +1,26 @@
{ stdenv, autoconf, automake, intltool, libtool, fetchFromGitHub, readline }:
stdenv.mkDerivation rec {
version = "0.16";
version = "0.17";
name = "scanmem-${version}";
src = fetchFromGitHub {
owner = "scanmem";
repo = "scanmem";
rev = "v${version}";
sha256 = "131rx6cpnlz2x36r0ry80gqapmxpz2qc3h0040xhvp7ydmd4fyjd";
sha256 = "17p8sh0rj8yqz36ria5bp48c8523zzw3y9g8sbm2jwq7sc27i7s9";
};
nativeBuildInputs = [ autoconf automake intltool libtool ];
buildInputs = [ readline ];
preConfigure = ''
./autogen.sh
'';
meta = with stdenv.lib; {
homepage = https://github.com/scanmem/scanmem;
description = "Memory scanner for finding and poking addresses in executing processes";
maintainers = [ maintainers.chattered ];
maintainers = [ maintainers.chattered ];
platforms = platforms.linux;
license = licenses.gpl3;
};