mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 01:13:05 +00:00
Lightning: 2.0.5 -> 2.1.0
This commit is contained in:
parent
6ad8fab785
commit
6f1b2e7de2
@ -1,11 +1,14 @@
|
|||||||
{ fetchurl, stdenv, binutils }:
|
{ stdenv, fetchurl, binutils }:
|
||||||
|
|
||||||
|
with stdenv.lib;
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "lightning-2.0.5";
|
|
||||||
|
name = "lightning-${version}";
|
||||||
|
version = "2.1.0";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://gnu/lightning/${name}.tar.gz";
|
url = "mirror://gnu/lightning/${name}.tar.gz";
|
||||||
sha256 = "0jm9a8ddxc1v9hyzyv4ybg37fjac2yjqv1hkd262wxzqms36mdk5";
|
sha256 = "19j9nwl88k660045s40cbz5zrl1wpd2mcxnnc8qqnnaj311a58qz";
|
||||||
};
|
};
|
||||||
|
|
||||||
# Needs libopcodes.so from binutils for 'make check'
|
# Needs libopcodes.so from binutils for 'make check'
|
||||||
@ -16,7 +19,6 @@ stdenv.mkDerivation rec {
|
|||||||
meta = {
|
meta = {
|
||||||
homepage = http://www.gnu.org/software/lightning/;
|
homepage = http://www.gnu.org/software/lightning/;
|
||||||
description = "Run-time code generation library";
|
description = "Run-time code generation library";
|
||||||
|
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
GNU lightning is a library that generates assembly language code
|
GNU lightning is a library that generates assembly language code
|
||||||
at run-time; it is very fast, making it ideal for Just-In-Time
|
at run-time; it is very fast, making it ideal for Just-In-Time
|
||||||
@ -24,7 +26,7 @@ stdenv.mkDerivation rec {
|
|||||||
to the clients a standardized RISC instruction set inspired by
|
to the clients a standardized RISC instruction set inspired by
|
||||||
the MIPS and SPARC chips.
|
the MIPS and SPARC chips.
|
||||||
'';
|
'';
|
||||||
|
maintainers = [ maintainers.AndersonTorres ];
|
||||||
license = stdenv.lib.licenses.lgpl3Plus;
|
license = licenses.lgpl3Plus;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user