3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #285376 from oliver-koss/ardopc

ardopc: init at 2021-08-28
This commit is contained in:
Maciej Krüger 2024-02-12 19:35:33 +01:00 committed by GitHub
commit 3c60db38e7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -0,0 +1,51 @@
{ fetchFromGitHub
, lib
, makeWrapper
, pkg-config
, stdenv
, alsa-lib
, flrig
, hamlib
}:
stdenv.mkDerivation (finalAttrs: {
pname = "ardopc";
version = "unstable-2021-08-28";
src = fetchFromGitHub {
owner = "hamarituc";
repo = "ardop";
rev = "20210828";
hash = "sha256-OUw9spFTsQLnsXksbfl3wD2NyY40JTyvlvONEIeZyWo=";
};
sourceRoot = "${finalAttrs.src.name}/ARDOPC";
nativeBuildInputs = [
makeWrapper
pkg-config
];
buildInputs = [
alsa-lib
flrig
hamlib
];
installPhase = ''
runHook preInstall
install -D ardopc $out/bin/ardopc
runHook postInstall
'';
meta = with lib; {
description = "ARDOP (Amateur Radio Digital Open Protocol) TNC implementation by John Wiseman (GM8BPQ)";
homepage = "https://github.com/hamarituc/ardop/ARDOPC";
license = licenses.gpl3Only;
maintainers = with maintainers; [ oliver-koss ];
mainProgram = "ardopc";
platforms = platforms.all;
};
})