nixos/firmware: make compression configurable (#364924)
[NixPkgs.git] / pkgs / tools / misc / twurl / default.nix
blob2587d6f0b2c0405ecb4d19f77659f2433c633733
2   lib,
3   bundlerApp,
4   bundlerUpdateScript,
5 }:
7 bundlerApp {
8   pname = "twurl";
9   gemdir = ./.;
10   exes = [ "twurl" ];
12   passthru.updateScript = bundlerUpdateScript "twurl";
14   meta = with lib; {
15     description = "OAuth-enabled curl for the Twitter API";
16     homepage = "https://github.com/twitter/twurl";
17     license = "MIT";
18     maintainers = with maintainers; [ brecht ];
19     platforms = platforms.unix;
20     mainProgram = "twurl";
21   };