2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, autoconf, automake, intltool, libtool, fetchFromGitHub, readline }:
|
2015-08-23 08:54:13 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-01-20 16:06:23 +00:00
|
|
|
version = "0.17";
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "scanmem";
|
2018-01-20 16:06:23 +00:00
|
|
|
|
2015-08-23 08:54:13 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "scanmem";
|
|
|
|
repo = "scanmem";
|
|
|
|
rev = "v${version}";
|
2018-01-20 16:06:23 +00:00
|
|
|
sha256 = "17p8sh0rj8yqz36ria5bp48c8523zzw3y9g8sbm2jwq7sc27i7s9";
|
2015-08-23 08:54:13 +01:00
|
|
|
};
|
2017-03-03 02:13:55 +00:00
|
|
|
|
|
|
|
nativeBuildInputs = [ autoconf automake intltool libtool ];
|
|
|
|
buildInputs = [ readline ];
|
2018-01-20 16:06:23 +00:00
|
|
|
|
2015-08-23 08:54:13 +01:00
|
|
|
preConfigure = ''
|
|
|
|
./autogen.sh
|
|
|
|
'';
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/scanmem/scanmem";
|
2015-08-23 08:54:13 +01:00
|
|
|
description = "Memory scanner for finding and poking addresses in executing processes";
|
2018-01-20 16:06:23 +00:00
|
|
|
maintainers = [ maintainers.chattered ];
|
2017-04-09 07:29:41 +01:00
|
|
|
platforms = platforms.linux;
|
2017-03-03 02:13:55 +00:00
|
|
|
license = licenses.gpl3;
|
2015-08-23 08:54:13 +01:00
|
|
|
};
|
|
|
|
}
|