2021-01-21 17:00:13 +00:00
|
|
|
{ lib, stdenv, fetchurl }:
|
2008-07-15 10:58:30 +01:00
|
|
|
|
2010-08-26 19:43:37 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2021-11-09 19:42:54 +00:00
|
|
|
pname = "tecla";
|
|
|
|
version = "1.6.3";
|
2010-08-26 19:43:37 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-11-09 19:42:54 +00:00
|
|
|
url = "https://www.astro.caltech.edu/~mcs/tecla/libtecla-${version}.tar.gz";
|
2016-12-22 11:27:18 +00:00
|
|
|
sha256 = "06pfq5wa8d25i9bdjkp4xhms5101dsrbg82riz7rz1a0a32pqxgj";
|
2008-07-15 10:58:30 +01:00
|
|
|
};
|
2010-08-26 19:43:37 +01:00
|
|
|
|
2021-02-28 16:08:47 +00:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace install-sh \
|
|
|
|
--replace "stripprog=" "stripprog=\$STRIP # "
|
|
|
|
'';
|
|
|
|
|
2010-08-26 19:43:37 +01:00
|
|
|
meta = {
|
2014-08-24 15:21:08 +01:00
|
|
|
description = "Command-line editing library";
|
2022-05-05 01:52:27 +01:00
|
|
|
homepage = "https://www.astro.caltech.edu/~mcs/tecla/";
|
2010-08-26 19:43:37 +01:00
|
|
|
license = "as-is";
|
2022-05-05 01:52:27 +01:00
|
|
|
mainProgram = "enhance";
|
2021-01-21 17:00:13 +00:00
|
|
|
platforms = lib.platforms.unix;
|
2010-08-26 19:43:37 +01:00
|
|
|
};
|
2008-07-15 10:58:30 +01:00
|
|
|
}
|