summary refs log tree commit diff
path: root/pkgs/tools/security/logkeys/default.nix
blob: ae7fa2316bcbc43ceb8373eb98ab6dd9f5dd2964 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ stdenv, fetchgit, which, procps, kbd }:

stdenv.mkDerivation rec {
  name = "logkeys-${version}";
  version = "5ef6b0dcb9e3";

  src = fetchgit {
    url = "https://code.google.com/p/logkeys/";
    rev = "5ef6b0dcb9e38e6137ad1579d624ec12107c56c3";
    sha256 = "02p0l92l0fq069g31ks6xbqavzxa9njj9460vw2jsa7livcn2z9d";
  };

  buildInputs = [ which procps kbd ];

  postPatch = ''
    substituteInPlace src/Makefile.in --replace 'root' '$(id -u)'
    substituteInPlace configure --replace '/dev/input' '/tmp'
 '';

  meta = with stdenv.lib; {
    description = "A GNU/Linux keylogger that works!";
    license = licenses.gpl3;
    homepage = http://code.google.com/p/logkeys/;
    maintainers = with maintainers; [offline];
    platforms = with platforms; linux;
  };
}