1{ lib
2, bundlerApp
3}:
4
5bundlerApp {
6 pname = "ceedling";
7 gemdir = ./.;
8 exes = [ "ceedling" ];
9
10 meta = with lib; {
11 description = "A build system for C projects that is something of an extension around Ruby's Rake";
12 homepage = "http://www.throwtheswitch.org/ceedling";
13 license = licenses.mit;
14 platforms = platforms.unix;
15 };
16}