about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/tecla/default.nix
blob: 7163f24815c52c87b866e9537dda7c4c49260bf0 (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
{ lib, stdenv, fetchurl }:

stdenv.mkDerivation rec {
  pname = "tecla";
  version = "1.6.3";

  src = fetchurl {
    url = "https://www.astro.caltech.edu/~mcs/tecla/libtecla-${version}.tar.gz";
    sha256 = "06pfq5wa8d25i9bdjkp4xhms5101dsrbg82riz7rz1a0a32pqxgj";
  };

  postPatch = ''
    substituteInPlace install-sh \
      --replace "stripprog=" "stripprog=\$STRIP # "
  '';

  meta = {
    description = "Command-line editing library";
    homepage = "https://www.astro.caltech.edu/~mcs/tecla/";
    license = "as-is";
    mainProgram = "enhance";
    platforms = lib.platforms.unix;
  };
}