summary refs log tree commit diff
path: root/pkgs/development/tools/misc/watson-ruby/default.nix
diff options
context:
space:
mode:
authorRoberto Di Remigio <roberto.diremigio@gmail.com>2017-09-25 14:51:16 +0100
committerJoerg Thalheim <joerg@thalheim.io>2017-09-25 14:51:16 +0100
commit932bd985105a535d4f142449620a7df0f5a1de1b (patch)
treeeede33d81bd6ea548b625e65dc0ba84371d187ea /pkgs/development/tools/misc/watson-ruby/default.nix
parentd1aed97aa03cb1e28096a78a4dd90d0e56bdf9aa (diff)
downloadnixpkgs-932bd985105a535d4f142449620a7df0f5a1de1b.tar
nixpkgs-932bd985105a535d4f142449620a7df0f5a1de1b.tar.gz
nixpkgs-932bd985105a535d4f142449620a7df0f5a1de1b.tar.bz2
nixpkgs-932bd985105a535d4f142449620a7df0f5a1de1b.tar.lz
nixpkgs-932bd985105a535d4f142449620a7df0f5a1de1b.tar.xz
nixpkgs-932bd985105a535d4f142449620a7df0f5a1de1b.tar.zst
nixpkgs-932bd985105a535d4f142449620a7df0f5a1de1b.zip
watson-ruby: init at 1.6.3
Diffstat (limited to 'pkgs/development/tools/misc/watson-ruby/default.nix')
-rw-r--r--pkgs/development/tools/misc/watson-ruby/default.nix18
1 files changed, 18 insertions, 0 deletions
diff --git a/pkgs/development/tools/misc/watson-ruby/default.nix b/pkgs/development/tools/misc/watson-ruby/default.nix
new file mode 100644
index 00000000000..86035835454
--- /dev/null
+++ b/pkgs/development/tools/misc/watson-ruby/default.nix
@@ -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;
+  };
+}