scanmem: 0.15.6 -> 0.16

This commit is contained in:
ndowens 2017-03-02 20:13:55 -06:00 committed by Bjørn Forsman
parent 199f57079c
commit cc9b960f48
1 changed files with 11 additions and 7 deletions

View File

@ -1,23 +1,27 @@
{ stdenv, autoconf, automake, intltool, libtool, fetchFromGitHub, readline }: { stdenv, autoconf, automake, intltool, libtool, fetchFromGitHub, readline }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
version = "0.15.6"; version = "0.16";
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 = "16cw76ji3mp0sj8q0sz5wndavk10n0si1sm6kr5zpiws4sw047ii"; sha256 = "131rx6cpnlz2x36r0ry80gqapmxpz2qc3h0040xhvp7ydmd4fyjd";
}; };
buildInputs = [ autoconf automake intltool libtool readline ];
nativeBuildInputs = [ autoconf automake intltool libtool ];
buildInputs = [ readline ];
preConfigure = '' preConfigure = ''
./autogen.sh ./autogen.sh
''; '';
meta = { 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 = [ stdenv.lib.maintainers.chattered ]; maintainers = [ maintainers.chattered ];
platforms = with stdenv.lib.platforms; linux ++ darwin; platforms = with platforms; linux ++ darwin;
license = stdenv.lib.licenses.gpl3; license = licenses.gpl3;
}; };
} }