linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / libraries / tecla / default.nix
bloba0a1ac0360e8cc9c5ab58acef9a220974a34d1dc
1 { lib, stdenv, fetchurl }:
3 stdenv.mkDerivation rec {
4   name = "tecla-1.6.3";
6   src = fetchurl {
7     url = "https://www.astro.caltech.edu/~mcs/tecla/lib${name}.tar.gz";
8     sha256 = "06pfq5wa8d25i9bdjkp4xhms5101dsrbg82riz7rz1a0a32pqxgj";
9   };
11   postPatch = ''
12     substituteInPlace install-sh \
13       --replace "stripprog=" "stripprog=\$STRIP # "
14   '';
16   meta = {
17     homepage = "https://www.astro.caltech.edu/~mcs/tecla/";
18     description = "Command-line editing library";
19     license = "as-is";
21     platforms = lib.platforms.unix;
22     maintainers = [ lib.maintainers.peti ];
23   };