summary refs log tree commit diff
path: root/pkgs/development/libraries/tecla/default.nix
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2010-08-26 18:43:37 +0000
committerPeter Simons <simons@cryp.to>2010-08-26 18:43:37 +0000
commitc1469fba93a2ac42068f49dbc4ca74c124f417b9 (patch)
treeedc2a327544f85879b3562408e82c38789cb61a8 /pkgs/development/libraries/tecla/default.nix
parentb41eb608daa2c46b8ee3bcc0544993faffda40e9 (diff)
downloadnixpkgs-c1469fba93a2ac42068f49dbc4ca74c124f417b9.tar
nixpkgs-c1469fba93a2ac42068f49dbc4ca74c124f417b9.tar.gz
nixpkgs-c1469fba93a2ac42068f49dbc4ca74c124f417b9.tar.bz2
nixpkgs-c1469fba93a2ac42068f49dbc4ca74c124f417b9.tar.lz
nixpkgs-c1469fba93a2ac42068f49dbc4ca74c124f417b9.tar.xz
nixpkgs-c1469fba93a2ac42068f49dbc4ca74c124f417b9.tar.zst
nixpkgs-c1469fba93a2ac42068f49dbc4ca74c124f417b9.zip
pkgs/development/libraries/tecla: enable Hydra build on all platforms
svn path=/nixpkgs/trunk/; revision=23470
Diffstat (limited to 'pkgs/development/libraries/tecla/default.nix')
-rw-r--r--pkgs/development/libraries/tecla/default.nix23
1 files changed, 13 insertions, 10 deletions
diff --git a/pkgs/development/libraries/tecla/default.nix b/pkgs/development/libraries/tecla/default.nix
index 53989bcefb5..bf420be3d38 100644
--- a/pkgs/development/libraries/tecla/default.nix
+++ b/pkgs/development/libraries/tecla/default.nix
@@ -1,18 +1,21 @@
 { stdenv, fetchurl }:
 
-stdenv.mkDerivation rec
-{
+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
-  {
+
+  src = fetchurl {
     url = "http://www.astro.caltech.edu/~mcs/tecla/lib${name}.tar.gz";
     sha256 = "18crv6q5f9g0cg6ry5h9dsa10inhpslklrv20h70f58lpm3jknr1";
   };
+
   configureFlags = "CFLAGS=-O3 CXXFLAGS=-O3";
+
+  meta = {
+    homepage = "http://www.astro.caltech.edu/~mcs/tecla/";
+    description = "Tecla command-line editing library";
+    license = "as-is";
+
+    platforms = stdenv.lib.platforms.all;
+    maintainers = [ stdenv.lib.maintainers.simons ];
+  };
 }