summary refs log tree commit diff
path: root/pkgs/tools/text/gist/default.nix
blob: 223ba59eecbe3c010775ea916f3fe4cecacf1064 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ stdenv, lib, bundlerEnv }:

let version = "4.4.2";
in bundlerEnv {
  name = "gist-${version}";
  gemfile = ./Gemfile;
  lockfile = ./Gemfile.lock;
  gemset = ./gemset.nix;
  meta = with lib; {
    homepage = "http://defunkt.io/gist/";
    description = "upload code to https://gist.github.com (or github enterprise)";
    platforms = platforms.all;
    license = licenses.mit;
  };
}