about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/tecla/default.nix
blob: e835d1d86fdc89638bd0d3f5f94ff25ee8c1f9a1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ stdenv, fetchurl }:

stdenv.mkDerivation rec {
  name = "tecla-1.6.3";

  src = fetchurl {
    url = "http://www.astro.caltech.edu/~mcs/tecla/lib${name}.tar.gz";
    sha256 = "06pfq5wa8d25i9bdjkp4xhms5101dsrbg82riz7rz1a0a32pqxgj";
  };

  meta = {
    homepage = http://www.astro.caltech.edu/~mcs/tecla/;
    description = "Command-line editing library";
    license = "as-is";

    platforms = stdenv.lib.platforms.unix;
    maintainers = [ stdenv.lib.maintainers.peti ];
  };
}