12 lines
180 B
Nix
12 lines
180 B
Nix
|
{ universe ? import <universe> {}, ... }:
|
||
|
|
||
|
universe.nix.buildClojure.program {
|
||
|
name = "test";
|
||
|
deps = with universe.third_party.clojure; [
|
||
|
|
||
|
];
|
||
|
srcs = [
|
||
|
./main.clj
|
||
|
]
|
||
|
}
|