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

16 lines
386 B
Nix
Raw Normal View History

2015-01-24 22:48:30 +00:00
{ stdenv, lib, bundlerEnv }:
2014-10-08 12:24:36 +00: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 12:24:36 +00: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 12:24:36 +00: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 12:24:36 +00:00
};
}