summary refs log tree commit diff
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2016-12-22 12:27:18 +0100
committerPeter Simons <simons@cryp.to>2016-12-22 12:28:35 +0100
commit96c8e1982836bf0b5e4c8614f5ca995d252f9fdd (patch)
tree7262337885a5cfd3413ecb1b489ea4b0d47682b5
parent0c1382085b2969ce38359bcb28fc5dfe67cca7eb (diff)
downloadnixpkgs-96c8e1982836bf0b5e4c8614f5ca995d252f9fdd.tar
nixpkgs-96c8e1982836bf0b5e4c8614f5ca995d252f9fdd.tar.gz
nixpkgs-96c8e1982836bf0b5e4c8614f5ca995d252f9fdd.tar.bz2
nixpkgs-96c8e1982836bf0b5e4c8614f5ca995d252f9fdd.tar.lz
nixpkgs-96c8e1982836bf0b5e4c8614f5ca995d252f9fdd.tar.xz
nixpkgs-96c8e1982836bf0b5e4c8614f5ca995d252f9fdd.tar.zst
nixpkgs-96c8e1982836bf0b5e4c8614f5ca995d252f9fdd.zip
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.
-rw-r--r--pkgs/development/libraries/tecla/default.nix6
1 files changed, 2 insertions, 4 deletions
diff --git a/pkgs/development/libraries/tecla/default.nix b/pkgs/development/libraries/tecla/default.nix
index ea03795afc8..93cf0670dc7 100644
--- a/pkgs/development/libraries/tecla/default.nix
+++ b/pkgs/development/libraries/tecla/default.nix
@@ -1,15 +1,13 @@
 { stdenv, fetchurl }:
 
 stdenv.mkDerivation rec {
-  name = "tecla-1.6.2";
+  name = "tecla-1.6.3";
 
   src = fetchurl {
     url = "http://www.astro.caltech.edu/~mcs/tecla/lib${name}.tar.gz";
-    sha256 = "1f5p1v9ac5r1f6pjzwacb4yf8m6z19rv77p76j7fix34hd9dnqcc";
+    sha256 = "06pfq5wa8d25i9bdjkp4xhms5101dsrbg82riz7rz1a0a32pqxgj";
   };
 
-  configureFlags = "CFLAGS=-O3 CXXFLAGS=-O3";
-
   meta = {
     homepage = "http://www.astro.caltech.edu/~mcs/tecla/";
     description = "Command-line editing library";