2017-10-10 16:01:42 -07:00
|
|
|
{ stdenv, fetchurl, libopcodes }:
|
2008-07-01 07:47:49 -07:00
|
|
|
|
2015-07-27 09:28:34 -07:00
|
|
|
with stdenv.lib;
|
2008-07-01 07:47:49 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2015-07-27 09:28:34 -07:00
|
|
|
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "lightning";
|
2019-09-27 08:07:01 -07:00
|
|
|
version = "2.1.3";
|
2008-07-01 07:47:49 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 05:41:18 -07:00
|
|
|
url = "mirror://gnu/lightning/${pname}-${version}.tar.gz";
|
2019-09-27 08:07:01 -07:00
|
|
|
sha256 = "1jgxbq2cm51dzi3zhz38mmgwdcgs328mfl8iviw8dxn6dn36p1gd";
|
2008-07-01 07:47:49 -07:00
|
|
|
};
|
|
|
|
|
2018-08-08 11:55:51 -07:00
|
|
|
checkInputs = [ libopcodes ];
|
2014-07-01 20:04:28 -07:00
|
|
|
|
2008-07-01 07:47:49 -07:00
|
|
|
doCheck = true;
|
|
|
|
|
|
|
|
meta = {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://www.gnu.org/software/lightning/";
|
2014-08-24 07:21:08 -07:00
|
|
|
description = "Run-time code generation library";
|
2008-07-01 07:47:49 -07: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 09:28:34 -07:00
|
|
|
maintainers = [ maintainers.AndersonTorres ];
|
|
|
|
license = licenses.lgpl3Plus;
|
2016-08-02 10:50:55 -07:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2008-07-01 07:47:49 -07:00
|
|
|
};
|
2014-07-01 20:04:28 -07:00
|
|
|
}
|