Skip to content

Instantly share code, notes, and snippets.

@worldofpeace
Created June 26, 2018 05:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save worldofpeace/022f2fbd4f34ff49217d2b4f4bb0fe50 to your computer and use it in GitHub Desktop.
Save worldofpeace/022f2fbd4f34ff49217d2b4f4bb0fe50 to your computer and use it in GitHub Desktop.
hastebin-client
{ lib, bundlerApp, ruby }:
bundlerApp rec {
pname = "haste";
exes = [ "haste" ];
gemdir = ./.;
meta = with lib; {
description = "a simple client for uploading data to haste-server";
homepage = https://github.com/seejohnrun/haste-client;
license = licenses.mit;
maintainers = with maintainers; [ worldofpeace ];
platforms = platforms.unix;
};
}
source 'https://rubygems.org' do
gem 'haste'
end
GEM
remote: https://rubygems.org/
specs:
faraday (0.15.2)
multipart-post (>= 1.2, < 3)
haste (0.2.3)
faraday (~> 0.9)
json
json (2.1.0)
multipart-post (2.0.0)
PLATFORMS
ruby
DEPENDENCIES
haste!
BUNDLED WITH
1.16.1
{
faraday = {
dependencies = ["multipart-post"];
source = {
remotes = ["https://rubygems.org"];
sha256 = "14lg0c4bphk16rccc5jmaan6nfcvmy0caiahpc61f9zfwpsj7ymg";
type = "gem";
};
version = "0.15.2";
};
haste = {
dependencies = ["faraday" "json"];
source = {
remotes = ["https://rubygems.org"];
sha256 = "0jaq0kvlxwvd0jq9pl707saqnaaal3dis13mqwfjbj121gr4hq4q";
type = "gem";
};
version = "0.2.3";
};
json = {
source = {
remotes = ["https://rubygems.org"];
sha256 = "01v6jjpvh3gnq6sgllpfqahlgxzj50ailwhj9b3cd20hi2dx0vxp";
type = "gem";
};
version = "2.1.0";
};
multipart-post = {
source = {
remotes = ["https://rubygems.org"];
sha256 = "09k0b3cybqilk1gwrwwain95rdypixb2q9w65gd44gfzsd84xi1x";
type = "gem";
};
version = "2.0.0";
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment