treewide: format using nixfmt
Signed-off-by: Bloxx12 <charlie@charlieroot.dev> Change-Id: I6a6a69641c36f9763e104087a559c148d0449f00
This commit is contained in:
parent
f4464732e3
commit
e641dfa114
113 changed files with 1545 additions and 1019 deletions
|
@ -5,7 +5,8 @@
|
|||
symlinkJoin,
|
||||
kakounePlugins,
|
||||
...
|
||||
}: let
|
||||
}:
|
||||
let
|
||||
custom-kakoune = stdenv.mkDerivation {
|
||||
name = "custom-kakoune";
|
||||
src = fetchFromGitHub {
|
||||
|
@ -15,7 +16,10 @@
|
|||
hash = "sha256-+xqJrJr6nnmEpQaizQ3JMDEISCD8IMB84NJZiXJ74kY=";
|
||||
};
|
||||
|
||||
makeFlags = ["debug=no" "PREFIX=${placeholder "out"}"];
|
||||
makeFlags = [
|
||||
"debug=no"
|
||||
"PREFIX=${placeholder "out"}"
|
||||
];
|
||||
|
||||
enableParallellBuilding = true;
|
||||
|
||||
|
@ -32,13 +36,13 @@
|
|||
'';
|
||||
};
|
||||
plugins = builtins.attrValues {
|
||||
inherit (kakounePlugins);
|
||||
inherit (kakounePlugins) ;
|
||||
};
|
||||
|
||||
kakoune-wrapped = symlinkJoin {
|
||||
name = "kakoune-wrapped";
|
||||
nativeBuildInputs = [makeWrapper];
|
||||
paths = [custom-kakoune] ++ plugins;
|
||||
nativeBuildInputs = [ makeWrapper ];
|
||||
paths = [ custom-kakoune ] ++ plugins;
|
||||
|
||||
postBuild = ''
|
||||
# create a directory for bins that kakoune needs
|
||||
|
@ -62,4 +66,4 @@
|
|||
'';
|
||||
};
|
||||
in
|
||||
kakoune-wrapped
|
||||
kakoune-wrapped
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue