2008-07-15 09:58:30 +00:00
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
|
2010-08-26 18:43:37 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2016-12-22 11:27:18 +00:00
|
|
|
name = "tecla-1.6.3";
|
2010-08-26 18:43:37 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2008-07-15 09:58:30 +00:00
|
|
|
url = "http://www.astro.caltech.edu/~mcs/tecla/lib${name}.tar.gz";
|
2016-12-22 11:27:18 +00:00
|
|
|
sha256 = "06pfq5wa8d25i9bdjkp4xhms5101dsrbg82riz7rz1a0a32pqxgj";
|
2008-07-15 09:58:30 +00:00
|
|
|
};
|
2010-08-26 18:43:37 +00:00
|
|
|
|
|
|
|
meta = {
|
2017-08-01 20:03:30 +00:00
|
|
|
homepage = http://www.astro.caltech.edu/~mcs/tecla/;
|
2014-08-24 14:21:08 +00:00
|
|
|
description = "Command-line editing library";
|
2010-08-26 18:43:37 +00:00
|
|
|
license = "as-is";
|
|
|
|
|
2016-08-02 21:55:42 +00:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2016-05-16 20:30:20 +00:00
|
|
|
maintainers = [ stdenv.lib.maintainers.peti ];
|
2010-08-26 18:43:37 +00:00
|
|
|
};
|
2008-07-15 09:58:30 +00:00
|
|
|
}
|