nixpkgs/pkgs/tools/text/gist/default.nix

16 lines
386 B
Nix
Raw Normal View History

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