Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{
2 lib,
3 bundlerApp,
4 bundlerUpdateScript,
5}:
6
7bundlerApp {
8 pname = "twurl";
9 gemdir = ./.;
10 exes = [ "twurl" ];
11
12 passthru.updateScript = bundlerUpdateScript "twurl";
13
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 };
22}