anvil-editor: init at 0.4
[NixPkgs.git] / pkgs / tools / misc / twurl / default.nix
blobff332e88de9171904306f2cf9ab64afd086c9055
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     mainProgram = "twurl";
17   };