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

32 lines
803 B
Nix
Raw Normal View History

{ stdenv, bundlerEnv, ruby, bundlerUpdateScript }:
2017-09-25 15:51:16 +02:00
stdenv.mkDerivation rec {
name = "watson-ruby-${version}";
2017-09-25 15:51:16 +02:00
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
'';
passthru.updateScript = bundlerUpdateScript "watson-ruby";
meta = with stdenv.lib; {
2017-09-25 15:51:16 +02:00
description = "An inline issue manager";
homepage = http://goosecode.com/watson/;
license = with licenses; mit;
maintainers = with maintainers; [ robertodr nicknovitski ];
2017-09-25 15:51:16 +02:00
platforms = platforms.unix;
};
}