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.

19 lines
405 B
Nix

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