python3Packages.xknx: 1.1.0 -> 1.2.0
[NixPkgs.git] / pkgs / shells / fish / babelfish.nix
blobfb938b8f37ded8c6d42c1d40bc9b0f50eec7529a
1 { lib, buildGoModule, fetchFromGitHub }:
2 buildGoModule rec {
3   pname = "babelfish";
4   version = "1.1.0";
6   src = fetchFromGitHub {
7     owner = "bouk";
8     repo = "babelfish";
9     rev = "v${version}";
10     sha256 = "0b1knj9llwzwnl4w3d6akvlc57dp0fszjkq98w8wybcvkbpd3ip1";
11   };
13   vendorSha256 = "0kspqwbgiqfkfj9a9pdwzc0jdi9p35abqqqjhcpvqwdxw378w5lz";
15   meta = with lib; {
16     description = "Translate bash scripts to fish";
17     homepage = "https://github.com/bouk/babelfish";
18     license = licenses.mit;
19     maintainers = with maintainers; [ bouk kevingriffin ];
20   };