From 6291d9d14d28a14ac4604f2c0da0947735fb606d Mon Sep 17 00:00:00 2001 From: Yves Dubromelle Date: Sat, 25 May 2019 14:09:49 +0200 Subject: [PATCH] formatage --- default.nix | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/default.nix b/default.nix index 4b96be2..4a1246e 100644 --- a/default.nix +++ b/default.nix @@ -1,17 +1,16 @@ with (import {}); -let asciidoctor_revealjs = bundlerApp { - pname = "asciidoctor-revealjs"; - exes = [ "asciidoctor-revealjs" ]; +let + asciidoctor_revealjs = bundlerApp { + pname = "asciidoctor-revealjs"; + exes = [ "asciidoctor-revealjs" ]; + inherit ruby; + gemdir = ./.; + }; - inherit ruby; - gemdir = ./.; -}; - -in -derivation { +in derivation { name = "kafetech-fai"; builder = "${bash}/bin/bash"; - args = [ "-f" ./build.sh ]; + args = [ ./build.sh ]; inherit asciidoctor asciidoctor_revealjs coreutils jre graphviz; src = ./src; system = builtins.currentSystem;