summaryrefslogtreecommitdiffstats
path: root/pkgs/development/octave-modules/communications/default.nix
blob: 0083b2b1229682e4acd66d30119bd3f2ff8f2a78 (plain)
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
27
28
29
30
31
32
{
  buildOctavePackage,
  lib,
  fetchurl,
  signal,
  hdf5,
}:

buildOctavePackage rec {
  pname = "communications";
  version = "1.2.7";

  src = fetchurl {
    url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
    sha256 = "sha256-UXaoV45mdmA7n2cB8J3S+/8Nt7uhokyv2MVBm+FK5lw=";
  };

  buildInputs = [
    hdf5
  ];

  requiredOctavePackages = [
    signal
  ];

  meta = {
    homepage = "https://gnu-octave.github.io/packages/communications/";
    license = lib.licenses.gpl3Plus;
    maintainers = with lib.maintainers; [ ravenjoad ];
    description = "Digital Communications, Error Correcting Codes (Channel Code), Source Code functions, Modulation and Galois Fields";
  };
}