summaryrefslogtreecommitdiffstats
path: root/pkgs/tools/text/gist
diff options
context:
space:
mode:
authorFrancesco Lazzarino <flazzarino@gmail.com>2014-10-08 07:24:36 -0500
committerFrancesco Lazzarino <flazzarino@gmail.com>2014-10-08 07:31:36 -0500
commit672654f9e980b896688d7c3e48ecf85553f2a948 (patch)
tree0670aa7b67907177c10d7cb170ef2d104cd65cd1 /pkgs/tools/text/gist
parent585325dc148b1d96e120d5884dfea28e39c457b4 (diff)
new: gist – cli for gist.github.com
Diffstat (limited to 'pkgs/tools/text/gist')
-rw-r--r--pkgs/tools/text/gist/default.nix32
1 files changed, 32 insertions, 0 deletions
diff --git a/pkgs/tools/text/gist/default.nix b/pkgs/tools/text/gist/default.nix
new file mode 100644
index 000000000000..1ac9901a8e17
--- /dev/null
+++ b/pkgs/tools/text/gist/default.nix
@@ -0,0 +1,32 @@
+{ stdenv
+, fetchurl
+, makeWrapper
+, ruby
+, rake
+}:
+
+let version = "v4.3.0";
+in stdenv.mkDerivation rec {
+ name = "gist-${version}";
+
+ src = fetchurl {
+ url = "https://github.com/defunkt/gist/archive/${version}.tar.gz";
+ sha256 = "92b91ffe07cc51ca8576b091e7123b851ee0d7d2d3f0e21d18b19d8bd8f9aa47";
+ };
+
+ buildInputs = [ rake makeWrapper ];
+
+ installPhase = ''
+ rake install prefix=$out
+
+ wrapProgram $out/bin/gist \
+ --prefix PATH : ${ruby}/bin \
+ '';
+
+ meta = {
+ homepage = "http://defunkt.io/gist/";
+ description = "upload code to https://gist.github.com (or github enterprise)";
+ platforms = stdenv.lib.platforms.all;
+ license = stdenv.lib.licenses.mit;
+ };
+}