nixpkgs/pkgs/development/tools/misc/watson-ruby/default.nix
Joerg Thalheim 407d8dac85 watson-ruby: hide bundlerEnv to avoid collisions
bundlerEnv also comes with a bundle script and ruby libraries
2017-09-25 15:49:14 +01:00

30 lines
707 B
Nix

{ stdenv, bundlerEnv, ruby }:
stdenv.mkDerivation rec {
name = "watson-ruby-${version}";
version = (import ./gemset.nix).watson-ruby.version;
env = bundlerEnv rec {
name = "watson-ruby-gems-${version}";
inherit ruby;
# expects Gemfile, Gemfile.lock and gemset.nix in the same directory
gemdir = ./.;
};
phases = [ "installPhase" ];
installPhase = ''
mkdir -p $out/bin
ln -s ${env}/bin/watson $out/bin/watson
'';
meta = with stdenv.lib; {
description = "An inline issue manager";
homepage = http://goosecode.com/watson/;
license = with licenses; mit;
maintainers = with maintainers; [ robertodr ];
platforms = platforms.unix;
};
}