Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
455 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02: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 = lib.licenses.mit;
maintainers = with maintainers; [ brecht ];
platforms = platforms.unix;
mainProgram = "twurl";
};
}