nixpkgs/pkgs/development/tools/ceedling/default.nix
2023-08-11 10:46:21 +01:00

17 lines
358 B
Nix

{ 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;
};
}