tvl-depot/fun/wcl/default.nix

14 lines
150 B
Nix
Raw Normal View History

{ pkgs, ... }:
pkgs.nix.buildLisp.program {
name = "wc";
srcs = [
./wc.lisp
];
deps = with pkgs.third_party.lisp; [
iterate
];
}