nixpkgs/pkgs/development/tools/cadre/default.nix
2019-02-26 13:38:51 -08:00

16 lines
378 B
Nix

{ lib, bundlerApp }:
bundlerApp {
pname = "cadre";
gemdir = ./.;
exes = [ "cadre" ];
meta = with lib; {
description = "Toolkit to add Ruby development - in-editor coverage, libnotify of test runs";
homepage = https://github.com/nyarly/cadre;
license = licenses.mit;
maintainers = [ maintainers.nyarly ];
platforms = platforms.unix;
};
}