nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 19 lines 426 B view raw
1{ 2 lib, 3 bundlerApp, 4}: 5 6bundlerApp { 7 pname = "ceedling"; 8 gemdir = ./.; 9 exes = [ "ceedling" ]; 10 11 meta = { 12 description = "Build system for C projects that is something of an extension around Ruby's Rake"; 13 homepage = "https://www.throwtheswitch.org/ceedling"; 14 license = lib.licenses.mit; 15 platforms = lib.platforms.unix; 16 maintainers = [ lib.maintainers.rlwrnc ]; 17 mainProgram = "ceedling"; 18 }; 19}