summary refs log tree commit diff
path: root/pkgs/tools/misc/twurl/default.nix
blob: dccb67fbaf6c2666bf2e125c5876a476a2ec5a7c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ 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;
  };
}