Skip to content

Commit

Permalink
direwolf: 1.2 -> 1.3
Browse files Browse the repository at this point in the history
alaLib as optional

Remove extra stdenv.lib

(@7c6f434c) fixed a typo - pushing instead of #24105
  • Loading branch information
ndowens authored and 7c6f434c committed Mar 24, 2017
1 parent a7cb699 commit c86f005
Showing 1 changed file with 24 additions and 19 deletions.
43 changes: 24 additions & 19 deletions pkgs/applications/misc/direwolf/default.nix
@@ -1,38 +1,43 @@
{ stdenv, fetchFromGitHub, unzip, alsaLib }:
let
version = "1.2";
in
{ stdenv, fetchFromGitHub
, espeak, alsaLib, perl
, python }:

with stdenv.lib;

stdenv.mkDerivation rec {
name = "direwolf-${version}";
inherit version;
version = "1.3";

src = fetchFromGitHub {
owner = "wb2osz";
repo = "direwolf";
rev = "8b81a32";
sha256 = "0r4fgdxghh292bzhqshr7zl5cg2lfsvlgmy4d5vqcli7x6qa1gcs";
rev = version;
sha256 = "1x6vvl3fy70ic5pqvqsyr0bkqwim8m9jaqnm5ls8z8i66rwq23fg";
};

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

patchPhase = ''
substituteInPlace Makefile.linux \
--replace "/usr/local" "$out" \
--replace "/usr/share" "$out/share"
'';
substituteInPlace Makefile.* \
--replace /usr/share $out/share
substituteInPlace dwespeak.sh \
--replace espeak ${espeak}/bin/espeak
'';

preInstall = ''
mkdir -p $out/bin
'';
installPhase = ''
mkdir -p $out/bin
make INSTALLDIR=$out install
'';

meta = with stdenv.lib; {
meta = {
description = "A Soundcard Packet TNC, APRS Digipeater, IGate, APRStt gateway";
# On the page: This page will be disappearing on October 8, 2015.
homepage = https://home.comcast.net/~wb2osz/site/;
homepage = https://github.com/wb2osz/direwolf/;
license = licenses.gpl2;
platforms = platforms.linux;
platforms = platforms.unix;
maintainers = [ maintainers.the-kenny ];
};
}

0 comments on commit c86f005

Please sign in to comment.