1{
2 buildOctavePackage,
3 lib,
4 fetchurl,
5 pkg-config,
6 nettle,
7}:
8
9buildOctavePackage rec {
10 pname = "general";
11 version = "2.1.3";
12
13 src = fetchurl {
14 url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
15 sha256 = "sha256-amslJm3haXaAehdm6jYJxcGZl+ggUcnJc3i6YJ3QkyM=";
16 };
17
18 nativeBuildInputs = [
19 pkg-config
20 ];
21
22 buildInputs = [
23 nettle
24 ];
25
26 meta = {
27 homepage = "https://gnu-octave.github.io/packages/general/";
28 license = lib.licenses.gpl3Plus;
29 maintainers = with lib.maintainers; [ KarlJoad ];
30 description = "General tools for Octave";
31 };
32}