tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
Lightning: 2.0.5 -> 2.1.0
AndersonTorres
10 years ago
6f1b2e7d
6ad8fab7
+9
-7
1 changed file
expand all
collapse all
unified
split
pkgs
development
libraries
lightning
default.nix
+9
-7
pkgs/development/libraries/lightning/default.nix
···
1
1
-
{ fetchurl, stdenv, binutils }:
1
1
+
{ stdenv, fetchurl, binutils }:
2
2
3
3
+
with stdenv.lib;
3
4
stdenv.mkDerivation rec {
4
4
-
name = "lightning-2.0.5";
5
5
+
6
6
+
name = "lightning-${version}";
7
7
+
version = "2.1.0";
5
8
6
9
src = fetchurl {
7
10
url = "mirror://gnu/lightning/${name}.tar.gz";
8
8
-
sha256 = "0jm9a8ddxc1v9hyzyv4ybg37fjac2yjqv1hkd262wxzqms36mdk5";
11
11
+
sha256 = "19j9nwl88k660045s40cbz5zrl1wpd2mcxnnc8qqnnaj311a58qz";
9
12
};
10
13
11
11
-
# Needs libopcodes.so from binutils for 'make check'
14
14
+
# Needs libopcodes.so from binutils for 'make check'
12
15
buildInputs = [ binutils ];
13
16
14
17
doCheck = true;
···
16
19
meta = {
17
20
homepage = http://www.gnu.org/software/lightning/;
18
21
description = "Run-time code generation library";
19
19
-
20
22
longDescription = ''
21
23
GNU lightning is a library that generates assembly language code
22
24
at run-time; it is very fast, making it ideal for Just-In-Time
···
24
26
to the clients a standardized RISC instruction set inspired by
25
27
the MIPS and SPARC chips.
26
28
'';
27
27
-
28
28
-
license = stdenv.lib.licenses.lgpl3Plus;
29
29
+
maintainers = [ maintainers.AndersonTorres ];
30
30
+
license = licenses.lgpl3Plus;
29
31
};
30
32
}