nixpkgs/pkgs/development/tools/misc/watson-ruby/default.nix

19 lines
484 B
Nix
Raw Normal View History

2017-09-25 15:51:16 +02:00
{ 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;
};
}