summary refs log tree commit diff
path: root/pkgs/applications/misc
diff options
context:
space:
mode:
authormarkuskowa <markus.kowalewski@gmail.com>2020-08-18 10:40:45 +0200
committerGitHub <noreply@github.com>2020-08-18 10:40:45 +0200
commit0657fe4bf44b14a9d55f40124b5026a549c3fce2 (patch)
tree0c3d7d2a129588cc88ac19cbdfbadaadce1a9980 /pkgs/applications/misc
parent8a9f58a375c401b96da862d969f66429def1d118 (diff)
parenteabbf3d88a00cf7a14993de82711ca8c8503b5b3 (diff)
downloadnixpkgs-0657fe4bf44b14a9d55f40124b5026a549c3fce2.tar
nixpkgs-0657fe4bf44b14a9d55f40124b5026a549c3fce2.tar.gz
nixpkgs-0657fe4bf44b14a9d55f40124b5026a549c3fce2.tar.bz2
nixpkgs-0657fe4bf44b14a9d55f40124b5026a549c3fce2.tar.lz
nixpkgs-0657fe4bf44b14a9d55f40124b5026a549c3fce2.tar.xz
nixpkgs-0657fe4bf44b14a9d55f40124b5026a549c3fce2.tar.zst
nixpkgs-0657fe4bf44b14a9d55f40124b5026a549c3fce2.zip
Merge pull request #93379 from lasandell/direwolf-1.5
direwolf 1.4 -> 1.5
Diffstat (limited to 'pkgs/applications/misc')
-rw-r--r--pkgs/applications/misc/direwolf/default.nix43
1 files changed, 0 insertions, 43 deletions
diff --git a/pkgs/applications/misc/direwolf/default.nix b/pkgs/applications/misc/direwolf/default.nix
deleted file mode 100644
index 623e6dc0fbe..00000000000
--- a/pkgs/applications/misc/direwolf/default.nix
+++ /dev/null
@@ -1,43 +0,0 @@
-{ 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;
-  };
-}