mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
18 lines
331 B
Nix
18 lines
331 B
Nix
|
{ 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;
|
||
|
};
|
||
|
}
|