nixpkgs/pkgs/shells/fish/babelfish.nix

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

22 lines
565 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub }:
2021-01-12 11:19:54 +00:00
buildGoModule rec {
pname = "babelfish";
2023-06-21 14:49:00 +00:00
version = "1.2.1";
2021-01-12 11:19:54 +00:00
src = fetchFromGitHub {
owner = "bouk";
repo = "babelfish";
rev = "v${version}";
2023-06-21 14:49:00 +00:00
sha256 = "sha256-/rWX77n9wqWxkHG7gVOinCJ6ahuEfbAcGijC1oAxrno=";
2021-01-12 11:19:54 +00:00
};
vendorHash = "sha256-HY9ejLfT6gj3vUMSzbNZ4QlpB+liigTtNDBNWCy8X38=";
2021-01-12 11:19:54 +00:00
meta = with lib; {
description = "Translate bash scripts to fish";
homepage = "https://github.com/bouk/babelfish";
license = licenses.mit;
maintainers = with maintainers; [ bouk kevingriffin ];
};
}