summaryrefslogtreecommitdiffstats
path: root/pkgs/development/tools/ceedling/default.nix
blob: 7146dabc440beedbc9a534416ec579c9111ca3ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
  lib,
  bundlerApp,
}:

bundlerApp {
  pname = "ceedling";
  gemdir = ./.;
  exes = [ "ceedling" ];

  meta = {
    description = "Build system for C projects that is something of an extension around Ruby's Rake";
    homepage = "https://www.throwtheswitch.org/ceedling";
    license = lib.licenses.mit;
    platforms = lib.platforms.unix;
    maintainers = [ lib.maintainers.rlwrnc ];
    mainProgram = "ceedling";
  };
}