summary refs log tree commit diff
path: root/pkgs/development/octave-modules/strings/default.nix
blob: 35887d249576503ae7b094317cd05932d7524db8 (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{ buildOctavePackage
, stdenv
, lib
, fetchurl
, pkg-config
, pcre2
}:

buildOctavePackage rec {
  pname = "strings";
  version = "1.3.1";

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

  nativeBuildInputs = [
    pkg-config
  ];

  buildInputs = [
    pcre2
  ];

  # The gripes library no longer exists.
  # https://build.opensuse.org/package/view_file/openSUSE:Backports:SLE-15-SP3/octave-forge-strings/octave-forge-strings.spec
  # toascii is a deprecated function. Has been fixed in recent commits, but has
  # not been released yet.
  # https://sourceforge.net/p/octave/strings/ci/2db1dbb75557eef94605cb4ac682783ab78ac8d8/
  patchPhase = ''
    sed -i -s -e 's/gripes.h/errwarn.h/' -e 's/gripe_/err_/g' src/*.cc
    sed -i s/toascii/double/g inst/*.m
  '';

  meta = with lib; {
    homepage = "https://octave.sourceforge.io/strings/index.html";
    license = licenses.gpl3Plus;
    # Claims to have a freebsd license, but I found none.
    maintainers = with maintainers; [ KarlJoad ];
    description = "Additional functions for manipulation and analysis of strings";
    # Some pcre symbols claimed to be missing
    broken = stdenv.isDarwin;
  };
}