You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
399 B
Nix
20 lines
399 B
Nix
with (import <nixpkgs> {});
|
|
let asciidoctor_revealjs = bundlerApp {
|
|
pname = "asciidoctor-revealjs";
|
|
exes = [ "asciidoctor-revealjs" ];
|
|
|
|
inherit ruby;
|
|
gemdir = ./.;
|
|
};
|
|
|
|
in
|
|
derivation {
|
|
name = "kafetech-fai";
|
|
builder = "${bash}/bin/bash";
|
|
args = [ "-f" ./build.sh ];
|
|
inherit asciidoctor asciidoctor_revealjs coreutils jre graphviz;
|
|
src = ./src;
|
|
system = builtins.currentSystem;
|
|
}
|
|
|