2015-01-24 22:48:30 +00:00
|
|
|
{ stdenv, lib, bundlerEnv }:
|
2014-10-08 13:24:36 +01:00
|
|
|
|
2015-11-07 19:36:31 +00:00
|
|
|
let version = "4.4.2";
|
2015-01-24 22:48:30 +00:00
|
|
|
in bundlerEnv {
|
2014-10-08 13:24:36 +01:00
|
|
|
name = "gist-${version}";
|
2015-01-24 22:48:30 +00:00
|
|
|
gemfile = ./Gemfile;
|
|
|
|
lockfile = ./Gemfile.lock;
|
|
|
|
gemset = ./gemset.nix;
|
|
|
|
meta = with lib; {
|
2014-10-08 13:24:36 +01:00
|
|
|
homepage = "http://defunkt.io/gist/";
|
|
|
|
description = "upload code to https://gist.github.com (or github enterprise)";
|
2015-01-24 22:48:30 +00:00
|
|
|
platforms = platforms.all;
|
|
|
|
license = licenses.mit;
|
2014-10-08 13:24:36 +01:00
|
|
|
};
|
|
|
|
}
|