summary refs log tree commit diff
path: root/pkgs/development/libraries/tecla
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2008-07-15 09:58:30 +0000
committerPeter Simons <simons@cryp.to>2008-07-15 09:58:30 +0000
commit8d7fe32a0e27327ead564396669cbedbab89c669 (patch)
tree7237e2505c258db971c9d0dac37a17b7ee9f1cef /pkgs/development/libraries/tecla
parentdb8241e430fe494918b1f0e78798add6352a0ba2 (diff)
downloadnixpkgs-8d7fe32a0e27327ead564396669cbedbab89c669.tar
nixpkgs-8d7fe32a0e27327ead564396669cbedbab89c669.tar.gz
nixpkgs-8d7fe32a0e27327ead564396669cbedbab89c669.tar.bz2
nixpkgs-8d7fe32a0e27327ead564396669cbedbab89c669.tar.lz
nixpkgs-8d7fe32a0e27327ead564396669cbedbab89c669.tar.xz
nixpkgs-8d7fe32a0e27327ead564396669cbedbab89c669.tar.zst
nixpkgs-8d7fe32a0e27327ead564396669cbedbab89c669.zip
maude, tecla, buddy: new packages
Maude is a high-level specification language. Buddy and libtecla are required
to build Maude.

svn path=/nixpkgs/trunk/; revision=12358
Diffstat (limited to 'pkgs/development/libraries/tecla')
-rw-r--r--pkgs/development/libraries/tecla/default.nix18
1 files changed, 18 insertions, 0 deletions
diff --git a/pkgs/development/libraries/tecla/default.nix b/pkgs/development/libraries/tecla/default.nix
new file mode 100644
index 00000000000..53989bcefb5
--- /dev/null
+++ b/pkgs/development/libraries/tecla/default.nix
@@ -0,0 +1,18 @@
+{ stdenv, fetchurl }:
+
+stdenv.mkDerivation rec
+{
+  name = "tecla-1.6.1";
+  meta =
+  {
+    homepage = "http://www.astro.caltech.edu/~mcs/tecla/";
+    description = "Tecla command-line editing library";
+    license = "as-is";
+  };
+  src = fetchurl
+  {
+    url = "http://www.astro.caltech.edu/~mcs/tecla/lib${name}.tar.gz";
+    sha256 = "18crv6q5f9g0cg6ry5h9dsa10inhpslklrv20h70f58lpm3jknr1";
+  };
+  configureFlags = "CFLAGS=-O3 CXXFLAGS=-O3";
+}