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

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