mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 01:13:05 +00:00
2641d97cbf
Reproduction script: # Bulk rewrite ./maintainers/scripts/sha-to-sri.py pkgs/by-name # Revert some packages which will need manual intervention for n in amdvlk azure-cli cargo-profiler corefonts flatito fluxcd gist perf_data_converter protoc-gen-js solana-cli swt verible; do git checkout -- "pkgs/by-name/${n:0:2}/${n}" done
47 lines
1.0 KiB
Nix
47 lines
1.0 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, perl
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "aprx";
|
|
version = "2.9.1-unstable-2021-09-21";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "PhirePhly";
|
|
repo = "aprx";
|
|
rev = "2c84448fe6d897980234961a87ee4c1d4fad69ec";
|
|
hash = "sha256-01PB7FaG8GmPm1U15/3g1CfQwdYmf3ThZFdVh2zUAl4=";
|
|
};
|
|
|
|
nativeBuildInputs = [ perl ];
|
|
|
|
env.NIX_CFLAGS_COMPILE = toString ([
|
|
"-fcommon"
|
|
"-O2"
|
|
] ++ lib.optional stdenv.cc.isClang "-Wno-error=implicit-int");
|
|
|
|
configureFlags = [
|
|
"--with-erlangstorage"
|
|
"--sbindir=$(out)/bin"
|
|
"--sysconfdir=$(out)/etc"
|
|
"--mandir=$(out)/share/man"
|
|
];
|
|
|
|
makeFlags = [ "INSTALL=install" ];
|
|
|
|
preInstall = ''
|
|
mkdir -p $out/bin $out/share/man/man8 $out/etc
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Multitalented APRS i-gate / digipeater";
|
|
homepage = "http://thelifeofkenneth.com/aprx";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ sarcasticadmin ];
|
|
mainProgram = "aprx";
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|