aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/applications/editors/jupyter-kernels/iruby/default.nix
blob: 260a614fe5c0bc1194dc2f522910b02d4472b73f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ lib
, bundlerApp
}:

bundlerApp {
  pname = "iruby";
  gemdir = ./.;
  exes = [ "iruby" ];

  meta = with lib; {
    description = "Ruby kernel for Jupyter";
    homepage    = "https://github.com/SciRuby/iruby";
    license     = licenses.mit;
    maintainers = [ maintainers.costrouc ];
    platforms   = platforms.unix;
  };
}