about summary refs log tree commit diff
path: root/pkgs/development/octave-modules/general/default.nix
blob: 33caeb1ea554c013fae8b282ebafa5d2a3501a9d (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
27
28
29
30
31
{ buildOctavePackage
, lib
, fetchurl
, pkg-config
, nettle
}:

buildOctavePackage rec {
  pname = "general";
  version = "2.1.3";

  src = fetchurl {
    url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
    sha256 = "sha256-amslJm3haXaAehdm6jYJxcGZl+ggUcnJc3i6YJ3QkyM=";
  };

  nativeBuildInputs = [
    pkg-config
  ];

  buildInputs = [
    nettle
  ];

  meta = with lib; {
    homepage = "https://octave.sourceforge.io/general/index.html";
    license = licenses.gpl3Plus;
    maintainers = with maintainers; [ KarlJoad ];
    description = "General tools for Octave";
  };
}