2017-10-11 02:01:42 +03:00
|
|
|
{ stdenv, fetchurl, libopcodes }:
|
2008-07-01 18:47:49 +04:00
|
|
|
|
2015-07-27 19:28:34 +03:00
|
|
|
with stdenv.lib;
|
2008-07-01 18:47:49 +04:00
|
|
|
stdenv.mkDerivation rec {
|
2015-07-27 19:28:34 +03:00
|
|
|
|
|
|
|
name = "lightning-${version}";
|
|
|
|
version = "2.1.0";
|
2008-07-01 18:47:49 +04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2014-08-28 21:12:34 +04:00
|
|
|
url = "mirror://gnu/lightning/${name}.tar.gz";
|
2015-07-27 19:28:34 +03:00
|
|
|
sha256 = "19j9nwl88k660045s40cbz5zrl1wpd2mcxnnc8qqnnaj311a58qz";
|
2008-07-01 18:47:49 +04:00
|
|
|
};
|
|
|
|
|
2017-10-11 02:01:42 +03:00
|
|
|
buildInputs = stdenv.lib.optional doCheck libopcodes;
|
2014-07-02 07:04:28 +04:00
|
|
|
|
2008-07-01 18:47:49 +04:00
|
|
|
doCheck = true;
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://www.gnu.org/software/lightning/;
|
2014-08-24 18:21:08 +04:00
|
|
|
description = "Run-time code generation library";
|
2008-07-01 18:47:49 +04: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 19:28:34 +03:00
|
|
|
maintainers = [ maintainers.AndersonTorres ];
|
|
|
|
license = licenses.lgpl3Plus;
|
2016-08-02 20:50:55 +03:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2008-07-01 18:47:49 +04:00
|
|
|
};
|
2014-07-02 07:04:28 +04:00
|
|
|
}
|