nixpkgs/pkgs/applications/misc/direwolf/default.nix

44 lines
1.0 KiB
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub
, espeak, alsaLib, perl
, python }:
with stdenv.lib;
2015-07-27 14:52:50 +00:00
stdenv.mkDerivation rec {
name = "direwolf-${version}";
version = "1.3";
2015-07-27 14:52:50 +00:00
src = fetchFromGitHub {
owner = "wb2osz";
repo = "direwolf";
rev = version;
sha256 = "1x6vvl3fy70ic5pqvqsyr0bkqwim8m9jaqnm5ls8z8i66rwq23fg";
2015-07-27 14:52:50 +00:00
};
buildInputs = [
espeak perl python
] ++ (optional stdenv.isLinux alsaLib);
2015-07-27 14:52:50 +00:00
patchPhase = ''
substituteInPlace Makefile.* \
--replace /usr/share $out/share
substituteInPlace dwespeak.sh \
--replace espeak ${espeak}/bin/espeak
'';
2015-07-27 14:52:50 +00:00
installPhase = ''
mkdir -p $out/bin
make INSTALLDIR=$out install
'';
2015-07-27 14:52:50 +00:00
meta = {
description = "A Soundcard Packet TNC, APRS Digipeater, IGate, APRStt gateway";
2015-07-27 14:52:50 +00:00
# On the page: This page will be disappearing on October 8, 2015.
homepage = https://github.com/wb2osz/direwolf/;
2015-07-27 14:52:50 +00:00
license = licenses.gpl2;
platforms = platforms.unix;
2015-07-27 14:52:50 +00:00
maintainers = [ maintainers.the-kenny ];
};
}