blob: 1596279de1c5abc8571c92b6d9bc3ad65f174cb9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
{ universe ? import <universe> {}, ... }:
universe.nix.buildClojure.program {
name = "test";
deps = with universe.third_party.clojure; [
];
srcs = [
./main.clj
]
}
|