formatage

This commit is contained in:
Yves Dubromelle
2019-05-25 14:09:49 +02:00
parent 7c244537e0
commit 6291d9d14d

View File

@@ -1,17 +1,16 @@
with (import <nixpkgs> {}); with (import <nixpkgs> {});
let asciidoctor_revealjs = bundlerApp { let
asciidoctor_revealjs = bundlerApp {
pname = "asciidoctor-revealjs"; pname = "asciidoctor-revealjs";
exes = [ "asciidoctor-revealjs" ]; exes = [ "asciidoctor-revealjs" ];
inherit ruby; inherit ruby;
gemdir = ./.; gemdir = ./.;
}; };
in in derivation {
derivation {
name = "kafetech-fai"; name = "kafetech-fai";
builder = "${bash}/bin/bash"; builder = "${bash}/bin/bash";
args = [ "-f" ./build.sh ]; args = [ ./build.sh ];
inherit asciidoctor asciidoctor_revealjs coreutils jre graphviz; inherit asciidoctor asciidoctor_revealjs coreutils jre graphviz;
src = ./src; src = ./src;
system = builtins.currentSystem; system = builtins.currentSystem;