mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 01:13:05 +00:00
Merge pull request #287768 from atorres1985-contrib/lightning
lightning: 2.2.2 -> 2.2.3
This commit is contained in:
commit
a7fa133a1e
@ -1,23 +1,39 @@
|
|||||||
{ lib
|
{ lib
|
||||||
, stdenv
|
|
||||||
, fetchurl
|
, fetchurl
|
||||||
, libopcodes
|
, libopcodes
|
||||||
|
, libiberty
|
||||||
|
, stdenv
|
||||||
|
, libbfd
|
||||||
|
, zlib
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation (finalAttrs: {
|
stdenv.mkDerivation (finalAttrs: {
|
||||||
pname = "lightning";
|
pname = "lightning";
|
||||||
version = "2.2.2";
|
version = "2.2.3";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://gnu/lightning/${finalAttrs.pname}-${finalAttrs.version}.tar.gz";
|
url = "mirror://gnu/lightning/lightning-${finalAttrs.version}.tar.gz";
|
||||||
hash = "sha256-CsqCQt6tF9YhF7z8sHjmqeqFbMgXQoE8noOUvM5zs+I=";
|
hash = "sha256-wEXHozoAr/v+sRBm+lAsA5kuR0piupWXeq0G28FMaCk=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeCheckInputs = [ libopcodes ];
|
outputs = [ "out" "dev" "info" ];
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
libopcodes
|
||||||
|
libbfd
|
||||||
|
libiberty
|
||||||
|
zlib
|
||||||
|
];
|
||||||
|
|
||||||
|
strictDeps = true;
|
||||||
|
|
||||||
|
configureFlags = [
|
||||||
|
(lib.enableFeature true "disassembler")
|
||||||
|
];
|
||||||
|
|
||||||
doCheck = true;
|
doCheck = true;
|
||||||
|
|
||||||
meta = with lib; {
|
meta = {
|
||||||
homepage = "https://www.gnu.org/software/lightning/";
|
homepage = "https://www.gnu.org/software/lightning/";
|
||||||
description = "Run-time code generation library";
|
description = "Run-time code generation library";
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
@ -26,9 +42,9 @@ stdenv.mkDerivation (finalAttrs: {
|
|||||||
it abstracts over the target CPU, as it exposes to the clients a
|
it abstracts over the target CPU, as it exposes to the clients a
|
||||||
standardized RISC instruction set inspired by the MIPS and SPARC chips.
|
standardized RISC instruction set inspired by the MIPS and SPARC chips.
|
||||||
'';
|
'';
|
||||||
maintainers = with maintainers; [ AndersonTorres ];
|
maintainers = with lib.maintainers; [ AndersonTorres ];
|
||||||
license = licenses.lgpl3Plus;
|
license = with lib.licenses; [ lgpl3Plus ];
|
||||||
platforms = platforms.unix;
|
platforms = lib.platforms.unix;
|
||||||
broken = stdenv.isDarwin; # failing tests
|
broken = stdenv.isDarwin; # failing tests
|
||||||
};
|
};
|
||||||
})
|
})
|
@ -23681,8 +23681,6 @@ with pkgs;
|
|||||||
|
|
||||||
libwacom-surface = callPackage ../development/libraries/libwacom/surface.nix { };
|
libwacom-surface = callPackage ../development/libraries/libwacom/surface.nix { };
|
||||||
|
|
||||||
lightning = callPackage ../development/libraries/lightning { };
|
|
||||||
|
|
||||||
lightlocker = callPackage ../misc/screensavers/light-locker { };
|
lightlocker = callPackage ../misc/screensavers/light-locker { };
|
||||||
|
|
||||||
lightspark = callPackage ../misc/lightspark { };
|
lightspark = callPackage ../misc/lightspark { };
|
||||||
|
Loading…
Reference in New Issue
Block a user