at 16.09-beta 23 lines 762 B view raw
1{ stdenv, autoconf, automake, intltool, libtool, fetchFromGitHub, readline }: 2 3stdenv.mkDerivation rec { 4 version = "0.15.6"; 5 name = "scanmem-${version}"; 6 src = fetchFromGitHub { 7 owner = "scanmem"; 8 repo = "scanmem"; 9 rev = "v${version}"; 10 sha256 = "16cw76ji3mp0sj8q0sz5wndavk10n0si1sm6kr5zpiws4sw047ii"; 11 }; 12 buildInputs = [ autoconf automake intltool libtool readline ]; 13 preConfigure = '' 14 ./autogen.sh 15 ''; 16 meta = { 17 homepage = "https://github.com/scanmem/scanmem"; 18 description = "Memory scanner for finding and poking addresses in executing processes"; 19 maintainers = [ stdenv.lib.maintainers.chattered ]; 20 platforms = with stdenv.lib.platforms; linux ++ darwin; 21 license = stdenv.lib.licenses.gpl3; 22 }; 23}