mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-21 03:25:36 +00:00
nixfmt as told by ci
Signed-off-by: lucasew <lucas59356@gmail.com>
This commit is contained in:
parent
f3d6b2ebef
commit
0c3ff997a7
@ -1,12 +1,13 @@
|
||||
{ stdenv
|
||||
, emilua
|
||||
, meson
|
||||
, gperf
|
||||
, ninja
|
||||
, asciidoctor
|
||||
, pkg-config
|
||||
, fetchFromGitLab
|
||||
, gitUpdater
|
||||
{
|
||||
stdenv,
|
||||
emilua,
|
||||
meson,
|
||||
gperf,
|
||||
ninja,
|
||||
asciidoctor,
|
||||
pkg-config,
|
||||
fetchFromGitLab,
|
||||
gitUpdater,
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation (self: {
|
||||
@ -20,9 +21,17 @@ stdenv.mkDerivation (self: {
|
||||
hash = "sha256-HvfEigHJTZelPvHFk22PWxkTFEajHJXfiCndxXHVgq8=";
|
||||
};
|
||||
|
||||
buildInputs = [ emilua asciidoctor gperf ];
|
||||
buildInputs = [
|
||||
emilua
|
||||
asciidoctor
|
||||
gperf
|
||||
];
|
||||
|
||||
nativeBuildInputs = [ meson pkg-config ninja ];
|
||||
nativeBuildInputs = [
|
||||
meson
|
||||
pkg-config
|
||||
ninja
|
||||
];
|
||||
|
||||
passthru.updateScript = gitUpdater {rev-prefix="v";};
|
||||
passthru.updateScript = gitUpdater { rev-prefix = "v"; };
|
||||
})
|
||||
|
@ -1,7 +1,12 @@
|
||||
{lib, newScope, pkgs, config }:
|
||||
{
|
||||
lib,
|
||||
newScope,
|
||||
pkgs,
|
||||
config,
|
||||
}:
|
||||
|
||||
emilua:
|
||||
(lib.makeScope newScope (self: {
|
||||
inherit emilua;
|
||||
beast = self.callPackage ../development/emilua-plugins/beast {};
|
||||
}))
|
||||
(lib.makeScope newScope (self: {
|
||||
inherit emilua;
|
||||
beast = self.callPackage ../development/emilua-plugins/beast { };
|
||||
}))
|
||||
|
Loading…
Reference in New Issue
Block a user