summary refs log tree commit diff
path: root/pkgs/tools/security/prey/default.nix
blob: f9bd6ea50e8d90dc13e7694190da92f3a111f550 (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{ stdenv, fetchurl, fetchgit, curl, scrot, imagemagick, xawtv, inetutils, makeWrapper, coreutils
, apiKey ? ""
, deviceKey ? "" }:

# TODO: this should assert keys are set, somehow if set through .override assertion fails
#assert apiKey != "";
#assert deviceKey != "";

let
  modulesSrc = fetchgit {
    url = "git://github.com/prey/prey-bash-client-modules.git";
    rev = "aba260ef110834cb2e92923a31f50c15970639ee";
    sha256 = "9cb1ad813d052a0a3e3bbdd329a8711ae3272e340379489511f7dd578d911e30";
  };
in stdenv.mkDerivation rec {
  name = "prey-bash-client-${version}";
  version = "0.6.0";

  src = fetchurl {
    url = "https://github.com/prey/prey-bash-client/archive/v${version}.tar.gz";
    sha256 = "09cb15jh4jdwvix9nx048ajkw2r5jaflk68y3rkha541n8n0qwh0";
  };

  buildInputs = [ curl scrot imagemagick xawtv makeWrapper ];

  phases = "unpackPhase installPhase";

  installPhase = ''
    substituteInPlace config --replace api_key=\'\' "api_key='${apiKey}'"
    substituteInPlace config --replace device_key=\'\' "device_key='${deviceKey}'"

    substituteInPlace prey.sh --replace /bin/bash $(type -Pp bash)
    mkdir -p $out/modules
    cp -R . $out
    cp -R ${modulesSrc}/* $out/modules/
    wrapProgram "$out/prey.sh" \
      --prefix PATH ":" "${xawtv}/bin:${imagemagick}/bin:${curl.bin}/bin:${scrot}/bin:${inetutils}/bin:${coreutils}/bin" \
      --set CURL_CA_BUNDLE "/etc/ssl/certs/ca-certificates.crt"
  '';

  meta = with stdenv.lib; {
    homepage = http://preyproject.com;
    description = "Proven tracking software that helps you find, lock and recover your devices when stolen or missing";
    maintainers = with maintainers; [ iElectric ];
    license = licenses.gpl3;
  };
}