summaryrefslogtreecommitdiff
path: root/nix/package.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nix/package.nix')
-rw-r--r--nix/package.nix8
1 files changed, 3 insertions, 5 deletions
diff --git a/nix/package.nix b/nix/package.nix
index 997bff3..a875712 100644
--- a/nix/package.nix
+++ b/nix/package.nix
@@ -18,9 +18,7 @@ stdenvNoCC.mkDerivation {
];
};
- nativeBuildInputs = [
- zola
- ];
+ nativeBuildInputs = [ zola ];
dontConfigure = true;
doCheck = false;
@@ -40,7 +38,7 @@ stdenvNoCC.mkDerivation {
passthru = {
serve = writeShellApplication {
name = "serve";
- runtimeInputs = [zola];
+ runtimeInputs = [ zola ];
text = ''
zola serve
@@ -51,6 +49,6 @@ stdenvNoCC.mkDerivation {
meta = {
homepage = "https://github.com/getchoo/website";
license = lib.licenses.mit;
- maintainers = with lib.maintainers; [getchoo];
+ maintainers = with lib.maintainers; [ getchoo ];
};
}