Merge pull request #34154 from WilliButz/update-scanmem

scanmem: 0.16 -> 0.17

authored by Jörg Thalheim and committed by GitHub 996a5adc 7490d4d6

+5 -5
+5 -5
pkgs/tools/misc/scanmem/default.nix
··· 1 { stdenv, autoconf, automake, intltool, libtool, fetchFromGitHub, readline }: 2 3 stdenv.mkDerivation rec { 4 - version = "0.16"; 5 name = "scanmem-${version}"; 6 - 7 src = fetchFromGitHub { 8 owner = "scanmem"; 9 repo = "scanmem"; 10 rev = "v${version}"; 11 - sha256 = "131rx6cpnlz2x36r0ry80gqapmxpz2qc3h0040xhvp7ydmd4fyjd"; 12 }; 13 14 nativeBuildInputs = [ autoconf automake intltool libtool ]; 15 buildInputs = [ readline ]; 16 - 17 preConfigure = '' 18 ./autogen.sh 19 ''; 20 meta = with stdenv.lib; { 21 homepage = https://github.com/scanmem/scanmem; 22 description = "Memory scanner for finding and poking addresses in executing processes"; 23 - maintainers = [ maintainers.chattered ]; 24 platforms = platforms.linux; 25 license = licenses.gpl3; 26 };
··· 1 { stdenv, autoconf, automake, intltool, libtool, fetchFromGitHub, readline }: 2 3 stdenv.mkDerivation rec { 4 + version = "0.17"; 5 name = "scanmem-${version}"; 6 + 7 src = fetchFromGitHub { 8 owner = "scanmem"; 9 repo = "scanmem"; 10 rev = "v${version}"; 11 + sha256 = "17p8sh0rj8yqz36ria5bp48c8523zzw3y9g8sbm2jwq7sc27i7s9"; 12 }; 13 14 nativeBuildInputs = [ autoconf automake intltool libtool ]; 15 buildInputs = [ readline ]; 16 + 17 preConfigure = '' 18 ./autogen.sh 19 ''; 20 meta = with stdenv.lib; { 21 homepage = https://github.com/scanmem/scanmem; 22 description = "Memory scanner for finding and poking addresses in executing processes"; 23 + maintainers = [ maintainers.chattered ]; 24 platforms = platforms.linux; 25 license = licenses.gpl3; 26 };