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