Commit fd27de63 authored by Robert James Hernandez's avatar Robert James Hernandez
Browse files

ax25-apps: 0.0.8-rc5 -> 0.0.8-rc5-unstable-2021-05-13

Add autoreconf to buildInputs.

Point to radiocatalog mirror on github since
https://linux-ax25.in-berlin.de is regularly returning a 500.
parent bcfa2a02
Loading
Loading
Loading
Loading
+11 −7
Original line number Diff line number Diff line
{
  lib,
  stdenv,
  fetchurl,
  fetchFromGitHub,
  autoreconfHook,
  libax25,
  ncurses,
}:

stdenv.mkDerivation rec {
  pname = "ax25-apps";
  version = "0.0.8-rc5";
  version = "0.0.8-rc5-unstable-2021-05-13";

  buildInputs = [
    autoreconfHook
    libax25
    ncurses
  ];

  # Due to recent unsolvable administrative domain problems with linux-ax25.org,
  # the new domain is linux-ax25.in-berlin.de
  src = fetchurl {
    url = "https://linux-ax25.in-berlin.de/pub/ax25-apps/ax25-apps-${version}.tar.gz";
    sha256 = "sha256-MzQOIyy5tbJKmojMrgtOcsaQTFJvs3rqt2hUgholz5Y=";
  # src from linux-ax25.in-berlin.de remote has been
  # unreliable, pointing to github mirror from the radiocatalog
  src = fetchFromGitHub {
    owner = "radiocatalog";
    repo = "ax25-apps";
    rev = "afc4a5faa01a24c4da1d152b901066405f36adb6";
    hash = "sha256-RLeFndis2OhIkJPLD+YfEUrJdZL33huVzlHq+kGq7dA=";
  };

  configureFlags = [