python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / misc / twurl / default.nix
blobdccb67fbaf6c2666bf2e125c5876a476a2ec5a7c
1 { lib, bundlerApp, bundlerUpdateScript }:
3 bundlerApp {
4   pname = "twurl";
5   gemdir = ./.;
6   exes = [ "twurl" ];
8   passthru.updateScript = bundlerUpdateScript "twurl";
10   meta = with lib; {
11     description = "OAuth-enabled curl for the Twitter API";
12     homepage    = "https://github.com/twitter/twurl";
13     license     = "MIT";
14     maintainers = with maintainers; [ brecht ];
15     platforms   = platforms.unix;
16   };