nixpkgs/pkgs/tools/misc/twurl/default.nix
Brecht Savelkoul b6985b0fbe twurl: init at 0.9.6
Twurl gives more low-level access to the Twitter API than the
`t` tool that's already available in nixpkgs right now
2021-07-06 21:16:01 +02:00

18 lines
419 B
Nix

{ lib, bundlerApp, bundlerUpdateScript }:
bundlerApp {
pname = "twurl";
gemdir = ./.;
exes = [ "twurl" ];
passthru.updateScript = bundlerUpdateScript "twurl";
meta = with lib; {
description = "OAuth-enabled curl for the Twitter API";
homepage = "https://github.com/twitter/twurl";
license = "MIT";
maintainers = with maintainers; [ brecht ];
platforms = platforms.unix;
};
}