158e1cfdd0
And don't use square brackets on such lines.
19 lines
414 B
Nix
19 lines
414 B
Nix
{ stdenv, lib, bundlerEnv, ruby }:
|
|
|
|
bundlerEnv {
|
|
name = "t-2.9.0";
|
|
|
|
inherit ruby;
|
|
gemfile = ./Gemfile;
|
|
lockfile = ./Gemfile.lock;
|
|
gemset = ./gemset.nix;
|
|
|
|
meta = with lib; {
|
|
description = "A command-line power tool for Twitter";
|
|
homepage = http://sferik.github.io/t/;
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ offline ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|