nixpkgs/pkgs/tools/text/gist/default.nix
2015-11-07 19:36:31 +00:00

16 lines
386 B
Nix

{ 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;
};
}