nixpkgs/pkgs/development/libraries/tecla/default.nix
Tuomas Tynkkynen 1bf5ded193 treewide: Lots of meta.hydraPlatforms -> meta.platforms
In all of these files, there is no meta.platforms but only
meta.hydraPlatforms, which doesn't seem to have any purpose except being
inconsistent.
2016-08-02 21:17:44 +03:00

22 lines
532 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "tecla-1.6.2";
src = fetchurl {
url = "http://www.astro.caltech.edu/~mcs/tecla/lib${name}.tar.gz";
sha256 = "1f5p1v9ac5r1f6pjzwacb4yf8m6z19rv77p76j7fix34hd9dnqcc";
};
configureFlags = "CFLAGS=-O3 CXXFLAGS=-O3";
meta = {
homepage = "http://www.astro.caltech.edu/~mcs/tecla/";
description = "Command-line editing library";
license = "as-is";
platforms = stdenv.lib.platforms.linux;
maintainers = [ stdenv.lib.maintainers.peti ];
};
}