watson-ruby: init at 1.6.3
This commit is contained in:
parent
d1aed97aa0
commit
932bd98510
2
pkgs/development/tools/misc/watson-ruby/Gemfile
Normal file
2
pkgs/development/tools/misc/watson-ruby/Gemfile
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
source 'https://rubygems.org'
|
||||||
|
gem 'watson-ruby'
|
15
pkgs/development/tools/misc/watson-ruby/Gemfile.lock
Normal file
15
pkgs/development/tools/misc/watson-ruby/Gemfile.lock
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
GEM
|
||||||
|
remote: https://rubygems.org/
|
||||||
|
specs:
|
||||||
|
json (2.1.0)
|
||||||
|
watson-ruby (1.6.3)
|
||||||
|
json
|
||||||
|
|
||||||
|
PLATFORMS
|
||||||
|
ruby
|
||||||
|
|
||||||
|
DEPENDENCIES
|
||||||
|
watson-ruby
|
||||||
|
|
||||||
|
BUNDLED WITH
|
||||||
|
1.14.4
|
18
pkgs/development/tools/misc/watson-ruby/default.nix
Normal file
18
pkgs/development/tools/misc/watson-ruby/default.nix
Normal file
@ -0,0 +1,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;
|
||||||
|
};
|
||||||
|
}
|
18
pkgs/development/tools/misc/watson-ruby/gemset.nix
Normal file
18
pkgs/development/tools/misc/watson-ruby/gemset.nix
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
{
|
||||||
|
json = {
|
||||||
|
source = {
|
||||||
|
remotes = ["https://rubygems.org"];
|
||||||
|
sha256 = "01v6jjpvh3gnq6sgllpfqahlgxzj50ailwhj9b3cd20hi2dx0vxp";
|
||||||
|
type = "gem";
|
||||||
|
};
|
||||||
|
version = "2.1.0";
|
||||||
|
};
|
||||||
|
watson-ruby = {
|
||||||
|
source = {
|
||||||
|
remotes = ["https://rubygems.org"];
|
||||||
|
sha256 = "1d5m29nr0i030q8ygmbapwri5ndcg2q6lf8a15bk79lfcp9xyj9w";
|
||||||
|
type = "gem";
|
||||||
|
};
|
||||||
|
version = "1.6.3";
|
||||||
|
};
|
||||||
|
}
|
@ -7574,6 +7574,8 @@ with pkgs;
|
|||||||
pythonPackages = python3Packages;
|
pythonPackages = python3Packages;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
watson-ruby = callPackage ../development/tools/misc/watson-ruby {};
|
||||||
|
|
||||||
xc3sprog = callPackage ../development/tools/misc/xc3sprog { };
|
xc3sprog = callPackage ../development/tools/misc/xc3sprog { };
|
||||||
|
|
||||||
xcbuild = callPackage ../development/tools/xcbuild/wrapper.nix {
|
xcbuild = callPackage ../development/tools/xcbuild/wrapper.nix {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user