nixpkgs/pkgs/development/libraries/tecla/default.nix
Peter Simons 96c8e19828 libtecla: update to version 1.6.3
Also dropped the slightly overzealous -O3 flag for the compiler. I doubt this
library benefits from crazy optimizations.
2016-12-22 12:28:35 +01:00

20 lines
484 B
Nix

{ 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 ];
};
}