nixpkgs/pkgs/tools/text/gist/default.nix
2015-01-25 16:22:30 -05:00

16 lines
386 B
Nix

{ stdenv, lib, bundlerEnv }:
let version = "4.3.0";
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;
};
}