2017-10-11 00:01:42 +01:00
|
|
|
{ stdenv, fetchurl, libopcodes }:
|
2008-07-01 15:47:49 +01:00
|
|
|
|
2015-07-27 17:28:34 +01:00
|
|
|
with stdenv.lib;
|
2008-07-01 15:47:49 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2015-07-27 17:28:34 +01:00
|
|
|
|
|
|
|
name = "lightning-${version}";
|
2018-06-16 20:03:23 +01:00
|
|
|
version = "2.1.2";
|
2008-07-01 15:47:49 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2014-08-28 18:12:34 +01:00
|
|
|
url = "mirror://gnu/lightning/${name}.tar.gz";
|
2018-06-16 20:03:23 +01:00
|
|
|
sha256 = "0sbs2lm8b9in2m8d52zf0x9gpp40x6r7sl6sha92yq3pr78rwa4v";
|
2008-07-01 15:47:49 +01:00
|
|
|
};
|
|
|
|
|
2018-08-08 19:55:51 +01:00
|
|
|
checkInputs = [ libopcodes ];
|
2014-07-02 04:04:28 +01:00
|
|
|
|
2008-07-01 15:47:49 +01:00
|
|
|
doCheck = true;
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://www.gnu.org/software/lightning/;
|
2014-08-24 15:21:08 +01:00
|
|
|
description = "Run-time code generation library";
|
2008-07-01 15:47:49 +01:00
|
|
|
longDescription = ''
|
|
|
|
GNU lightning is a library that generates assembly language code
|
|
|
|
at run-time; it is very fast, making it ideal for Just-In-Time
|
|
|
|
compilers, and it abstracts over the target CPU, as it exposes
|
|
|
|
to the clients a standardized RISC instruction set inspired by
|
|
|
|
the MIPS and SPARC chips.
|
|
|
|
'';
|
2015-07-27 17:28:34 +01:00
|
|
|
maintainers = [ maintainers.AndersonTorres ];
|
|
|
|
license = licenses.lgpl3Plus;
|
2016-08-02 18:50:55 +01:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2008-07-01 15:47:49 +01:00
|
|
|
};
|
2014-07-02 04:04:28 +01:00
|
|
|
}
|