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
|
|
|
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "lightning";
|
2019-09-27 16:07:01 +01:00
|
|
|
version = "2.1.3";
|
2008-07-01 15:47:49 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "mirror://gnu/lightning/${pname}-${version}.tar.gz";
|
2019-09-27 16:07:01 +01:00
|
|
|
sha256 = "1jgxbq2cm51dzi3zhz38mmgwdcgs328mfl8iviw8dxn6dn36p1gd";
|
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 = {
|
2018-12-01 18:22:13 +00:00
|
|
|
homepage = https://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
|
|
|
}
|