summary refs log tree commit diff
path: root/pkgs/applications/misc/direwolf/default.nix
blob: 038df41875f5909fc0c2c0578453bec08e013b97 (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
{ stdenv, fetchFromGitHub
, espeak, alsaLib, perl
, python }:

with stdenv.lib;

stdenv.mkDerivation rec {
  pname = "direwolf";
  version = "1.4";

  src = fetchFromGitHub {
    owner = "wb2osz";
    repo = "direwolf";
    rev = version;
    sha256 = "033sffjs2dz48077hc58jr4lxxs8md1fyfh4lig6ib7pyigiv1y0";
  };

  buildInputs = [
    espeak perl python
  ] ++ (optional stdenv.isLinux alsaLib);

  postPatch = ''
    for i in Makefile.*; do
      substituteInPlace "$i" \
        --replace /usr/share $out/share
    done

    substituteInPlace dwespeak.sh \
      --replace espeak ${espeak}/bin/espeak
  '';

  preInstall = ''
    mkdir -p $out/bin
  '';
  installFlags = [ "INSTALLDIR=$(out)" ];

  meta = {
    description = "A Soundcard Packet TNC, APRS Digipeater, IGate, APRStt gateway";
    homepage = "https://github.com/wb2osz/direwolf/";
    license = licenses.gpl2;
    platforms = platforms.unix;
    maintainers = [ maintainers.the-kenny ];
  };
}