linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / tools / misc / scanmem / default.nix
blobbd6b8dbb1d1476830fd59e6ac68896bad963fde3
1 { lib, stdenv, autoconf, automake, intltool, libtool, fetchFromGitHub, readline }:
3 stdenv.mkDerivation rec {
4   version = "0.17";
5   pname = "scanmem";
7   src = fetchFromGitHub {
8     owner  = "scanmem";
9     repo   = "scanmem";
10     rev    = "v${version}";
11     sha256 = "17p8sh0rj8yqz36ria5bp48c8523zzw3y9g8sbm2jwq7sc27i7s9";
12   };
14   nativeBuildInputs = [ autoconf automake intltool libtool ];
15   buildInputs = [ readline ];
17   preConfigure = ''
18     ./autogen.sh
19   '';
20   meta = with 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   };