|
|
|
@ -1,17 +1,16 @@
|
|
|
|
|
with (import <nixpkgs> {});
|
|
|
|
|
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;
|
|
|
|
|