repo.or.cz
/
NixPkgs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git]
/
pkgs
/
development
/
tools
/
ceedling
/
default.nix
blob
5910b47b7424a8b5a1db281fe860ad7f44421694
1
{ lib
2
, bundlerApp
3
}:
4
5
bundlerApp {
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
}