about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/radio/m17-cxx-demod/default.nix
blob: 884ebe7a91b51e95a1a45bae1a06089f5060637f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ lib, stdenv, fetchFromGitHub, cmake, pkg-config, boost, codec2 }:

stdenv.mkDerivation rec {
  pname = "m17-cxx-demod";
  version = "2.3";

  src = fetchFromGitHub {
    owner = "mobilinkd";
    repo = pname;
    rev = "v${version}";
    hash = "sha256-mvppkFBmmPVqvlqIqrbwGrOBih5zS5sZrV/usEhHiws=";
  };

  nativeBuildInputs = [ cmake pkg-config ];
  buildInputs = [ codec2 boost ];

  meta = with lib; {
    description = "M17 Demodulator in C++";
    homepage = "https://github.com/mobilinkd/m17-cxx-demod";
    license = licenses.gpl3Only;
    platforms = platforms.unix;
    maintainers = teams.c3d2.members;
    # never built on aarch64-darwin, x86_64-darwin since first introduction in nixpkgs
    broken = stdenv.isDarwin;
  };
}