Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
424 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
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 = "https://www.throwtheswitch.org/ceedling";
license = licenses.mit;
platforms = platforms.unix;
maintainers = [ maintainers.rlwrnc ];
mainProgram = "ceedling";
};
}