2021-07-06 20:16:01 +01:00
|
|
|
{ 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;
|
2023-11-27 01:17:53 +00:00
|
|
|
mainProgram = "twurl";
|
2021-07-06 20:16:01 +01:00
|
|
|
};
|
|
|
|
}
|