summary refs log tree commit diff
path: root/pkgs/development/tools/misc/watson-ruby/default.nix
blob: 860358354540706c2d23ba135663b22024e5b85c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ lib, bundlerEnv, ruby }:

bundlerEnv rec {
  name = "watson-ruby-${version}";

  version = (import ./gemset.nix).watson-ruby.version;
  inherit ruby;
  # expects Gemfile, Gemfile.lock and gemset.nix in the same directory
  gemdir = ./.;

  meta = with lib; {
    description = "An inline issue manager";
    homepage    = http://goosecode.com/watson/;
    license     = with licenses; mit;
    maintainers = with maintainers; [ robertodr ];
    platforms   = platforms.unix;
  };
}