mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
18 lines
446 B
Nix
18 lines
446 B
Nix
{ 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;
|
|
mainProgram = "twurl";
|
|
};
|
|
}
|