nixpkgs/pkgs/tools/misc/scanmem/default.nix

28 lines
745 B
Nix
Raw Normal View History

{ lib, stdenv, autoconf, automake, intltool, libtool, fetchFromGitHub, readline }:
stdenv.mkDerivation rec {
2018-01-20 16:06:23 +00:00
version = "0.17";
pname = "scanmem";
2018-01-20 16:06:23 +00:00
src = fetchFromGitHub {
owner = "scanmem";
repo = "scanmem";
rev = "v${version}";
2018-01-20 16:06:23 +00:00
sha256 = "17p8sh0rj8yqz36ria5bp48c8523zzw3y9g8sbm2jwq7sc27i7s9";
};
2017-03-03 02:13:55 +00:00
nativeBuildInputs = [ autoconf automake intltool libtool ];
buildInputs = [ readline ];
2018-01-20 16:06:23 +00:00
preConfigure = ''
./autogen.sh
'';
meta = with lib; {
homepage = "https://github.com/scanmem/scanmem";
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 06:29:41 +00:00
platforms = platforms.linux;
2017-03-03 02:13:55 +00:00
license = licenses.gpl3;
};
}