Created
June 26, 2018 05:19
-
-
Save worldofpeace/022f2fbd4f34ff49217d2b4f4bb0fe50 to your computer and use it in GitHub Desktop.
hastebin-client
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ 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; | |
}; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
source 'https://rubygems.org' do | |
gem 'haste' | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
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