about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/tools/ceedling/default.nix
blob: 5910b47b7424a8b5a1db281fe860ad7f44421694 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ lib
, bundlerApp
}:

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

  meta = with lib; {
    description = "A build system for C projects that is something of an extension around Ruby's Rake";
    homepage    = "http://www.throwtheswitch.org/ceedling";
    license     = licenses.mit;
    platforms   = platforms.unix;
  };
}