git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
16 lines
356 B
Nix
16 lines
356 B
Nix
{ lib
|
|
, bundlerApp
|
|
}:
|
|
|
|
bundlerApp {
|
|
pname = "ceedling";
|
|
gemdir = ./.;
|
|
exes = [ "ceedling" ];
|
|
|
|
meta = with lib; {
|
|
description = "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;
|
|
};
|
|
}
|