biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / ceedling / default.nix
blob5910b47b7424a8b5a1db281fe860ad7f44421694
1 { lib
2 , bundlerApp
3 }:
5 bundlerApp {
6   pname = "ceedling";
7   gemdir = ./.;
8   exes = [ "ceedling" ];
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   };