f5fa5fa4d6
* pkgs: refactor needless quoting of homepage meta attribute A lot of packages are needlessly quoting the homepage meta attribute (about 1400, 22%), this commit refactors all of those instances. * pkgs: Fixing some links that were wrongfully unquoted in the previous commit * Fixed some instances
28 lines
759 B
Nix
28 lines
759 B
Nix
{ stdenv, autoconf, automake, intltool, libtool, fetchFromGitHub, readline }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "0.16";
|
|
name = "scanmem-${version}";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "scanmem";
|
|
repo = "scanmem";
|
|
rev = "v${version}";
|
|
sha256 = "131rx6cpnlz2x36r0ry80gqapmxpz2qc3h0040xhvp7ydmd4fyjd";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoconf automake intltool libtool ];
|
|
buildInputs = [ readline ];
|
|
|
|
preConfigure = ''
|
|
./autogen.sh
|
|
'';
|
|
meta = with stdenv.lib; {
|
|
homepage = https://github.com/scanmem/scanmem;
|
|
description = "Memory scanner for finding and poking addresses in executing processes";
|
|
maintainers = [ maintainers.chattered ];
|
|
platforms = platforms.linux;
|
|
license = licenses.gpl3;
|
|
};
|
|
}
|