407d8dac85
bundlerEnv also comes with a bundle script and ruby libraries
30 lines
707 B
Nix
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;
|
|
};
|
|
}
|