Merge pull request #208255 from sarcasticadmin/rh/1672308083ax25apps

authored by Sandro and committed by GitHub c3c939c1 6a27e817

+35
+33
pkgs/applications/radio/ax25-apps/default.nix
··· 1 + { lib 2 + , stdenv 3 + , fetchurl 4 + , libax25 5 + , ncurses 6 + }: 7 + 8 + stdenv.mkDerivation rec { 9 + pname = "ax25-apps"; 10 + version = "0.0.8-rc5"; 11 + 12 + buildInputs = [ libax25 ncurses ]; 13 + 14 + # Due to recent unsolvable administrative domain problems with linux-ax25.org, 15 + # the new domain is linux-ax25.in-berlin.de 16 + src = fetchurl { 17 + url = "https://linux-ax25.in-berlin.de/pub/ax25-apps/ax25-apps-${version}.tar.gz"; 18 + sha256 = "sha256-MzQOIyy5tbJKmojMrgtOcsaQTFJvs3rqt2hUgholz5Y="; 19 + }; 20 + 21 + configureFlags = [ 22 + "--sysconfdir=/etc" 23 + "--program-transform-name=s@^call$@ax&@;s@^listen$@ax&@" 24 + ]; 25 + 26 + meta = with lib; { 27 + description = "AX.25 ham radio applications"; 28 + homepage = "https://linux-ax25.in-berlin.de/wiki/Main_Page"; 29 + license = licenses.lgpl21Only; 30 + maintainers = with maintainers; [ sarcasticadmin ]; 31 + platforms = platforms.linux; 32 + }; 33 + }
+2
pkgs/top-level/all-packages.nix
··· 27773 27773 27774 27774 avocode = callPackage ../applications/graphics/avocode {}; 27775 27775 27776 + ax25-apps = callPackage ../applications/radio/ax25-apps {}; 27777 + 27776 27778 ax25-tools = callPackage ../applications/radio/ax25-tools {}; 27777 27779 27778 27780 azpainter = callPackage ../applications/graphics/azpainter { };