scanmem: 0.16 -> 0.17
This commit is contained in:
parent
7490d4d698
commit
4361cc5ffa
@ -1,26 +1,26 @@
|
|||||||
{ stdenv, autoconf, automake, intltool, libtool, fetchFromGitHub, readline }:
|
{ stdenv, autoconf, automake, intltool, libtool, fetchFromGitHub, readline }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
version = "0.16";
|
version = "0.17";
|
||||||
name = "scanmem-${version}";
|
name = "scanmem-${version}";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "scanmem";
|
owner = "scanmem";
|
||||||
repo = "scanmem";
|
repo = "scanmem";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "131rx6cpnlz2x36r0ry80gqapmxpz2qc3h0040xhvp7ydmd4fyjd";
|
sha256 = "17p8sh0rj8yqz36ria5bp48c8523zzw3y9g8sbm2jwq7sc27i7s9";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ autoconf automake intltool libtool ];
|
nativeBuildInputs = [ autoconf automake intltool libtool ];
|
||||||
buildInputs = [ readline ];
|
buildInputs = [ readline ];
|
||||||
|
|
||||||
preConfigure = ''
|
preConfigure = ''
|
||||||
./autogen.sh
|
./autogen.sh
|
||||||
'';
|
'';
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
homepage = https://github.com/scanmem/scanmem;
|
homepage = https://github.com/scanmem/scanmem;
|
||||||
description = "Memory scanner for finding and poking addresses in executing processes";
|
description = "Memory scanner for finding and poking addresses in executing processes";
|
||||||
maintainers = [ maintainers.chattered ];
|
maintainers = [ maintainers.chattered ];
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
license = licenses.gpl3;
|
license = licenses.gpl3;
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user