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

28 lines
759 B
Nix
Raw Normal View History

{ stdenv, autoconf, automake, intltool, libtool, fetchFromGitHub, readline }:
stdenv.mkDerivation rec {
2017-03-03 03:13:55 +01:00
version = "0.16";
name = "scanmem-${version}";
2017-03-03 03:13:55 +01:00
src = fetchFromGitHub {
owner = "scanmem";
repo = "scanmem";
rev = "v${version}";
2017-03-03 03:13:55 +01:00
sha256 = "131rx6cpnlz2x36r0ry80gqapmxpz2qc3h0040xhvp7ydmd4fyjd";
};
2017-03-03 03:13:55 +01:00
nativeBuildInputs = [ autoconf automake intltool libtool ];
buildInputs = [ readline ];
preConfigure = ''
./autogen.sh
'';
2017-03-03 03:13:55 +01:00
meta = with stdenv.lib; {
homepage = https://github.com/scanmem/scanmem;
description = "Memory scanner for finding and poking addresses in executing processes";
2017-03-03 03:13:55 +01:00
maintainers = [ maintainers.chattered ];
2017-04-09 08:29:41 +02:00
platforms = platforms.linux;
2017-03-03 03:13:55 +01:00
license = licenses.gpl3;
};
}