nixfmt as told by ci

Signed-off-by: lucasew <lucas59356@gmail.com>
This commit is contained in:
lucasew 2024-09-05 17:27:23 -03:00
parent f3d6b2ebef
commit 0c3ff997a7
2 changed files with 31 additions and 17 deletions

View File

@ -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"; };
})

View File

@ -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 { };
}))