2021-01-06 18:08:51 +00:00
|
|
|
{
|
|
|
|
buildOctavePackage,
|
2021-12-26 22:41:06 +00:00
|
|
|
stdenv,
|
2021-01-06 18:08:51 +00:00
|
|
|
lib,
|
|
|
|
fetchurl,
|
2022-12-23 15:28:08 +00:00
|
|
|
pkg-config,
|
|
|
|
pcre2,
|
2021-01-06 18:08:51 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildOctavePackage rec {
|
|
|
|
pname = "strings";
|
2023-10-12 03:02:22 +00:00
|
|
|
version = "1.3.1";
|
2021-01-06 18:08:51 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
|
2023-10-12 03:02:22 +00:00
|
|
|
sha256 = "sha256-9l5eYgzw5K85trRAJW9eMYZxvf0RDNxDlD0MtwrSCLc=";
|
2021-01-06 18:08:51 +00:00
|
|
|
};
|
|
|
|
|
2022-12-23 15:28:08 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
pkg-config
|
|
|
|
];
|
|
|
|
|
2021-01-06 18:08:51 +00:00
|
|
|
buildInputs = [
|
2022-12-23 15:28:08 +00:00
|
|
|
pcre2
|
2021-01-06 18:08:51 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
# 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";
|
2021-12-26 22:41:06 +00:00
|
|
|
# Some pcre symbols claimed to be missing
|
|
|
|
broken = stdenv.hostPlatform.isDarwin;
|
2021-01-06 18:08:51 +00:00
|
|
|
};
|
|
|
|
}
|