My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/applications/radio/digiham/default.nix

34 lines
680 B

{ stdenv, lib, fetchFromGitHub
, cmake, pkg-config, protobuf, icu, csdr, codecserver
}:
stdenv.mkDerivation rec {
pname = "digiham";
version = "0.6.0";
src = fetchFromGitHub {
owner = "jketterl";
repo = pname;
rev = version;
sha256 = "sha256-nKNA5xAhM/lyyvFJnajWwY0hwVZhLApbDkXoUYFjlt0=";
};
nativeBuildInputs = [
cmake
];
buildInputs = [
codecserver
protobuf
csdr
icu
];
meta = with lib; {
homepage = "https://github.com/jketterl/digiham";
description = "tools for decoding digital ham communication";
license = licenses.gpl3Only;
platforms = platforms.unix;
maintainers = teams.c3d2.members;
};
}