1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-18 02:46:28 +00:00
nixpkgs/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 02:13:55 +00:00
version = "0.16";
name = "scanmem-${version}";
2017-03-03 02:13:55 +00:00
src = fetchFromGitHub {
owner = "scanmem";
repo = "scanmem";
rev = "v${version}";
2017-03-03 02:13:55 +00:00
sha256 = "131rx6cpnlz2x36r0ry80gqapmxpz2qc3h0040xhvp7ydmd4fyjd";
};
2017-03-03 02:13:55 +00:00
nativeBuildInputs = [ autoconf automake intltool libtool ];
buildInputs = [ readline ];
preConfigure = ''
./autogen.sh
'';
2017-03-03 02:13:55 +00: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 02:13:55 +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;
};
}