nixpkgs/pkgs/development/tools/cadre/default.nix

16 lines
378 B
Nix
Raw Normal View History

2019-02-26 21:38:51 +00:00
{ 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;
};
}