mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-05 13:23:17 +00:00
35 lines
680 B
Nix
35 lines
680 B
Nix
|
{ 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;
|
||
|
};
|
||
|
}
|