From 8d0ddfc1b64b926ac1a5164ab32cb535163a0e72 Mon Sep 17 00:00:00 2001 From: Kevin Griffin Date: Tue, 12 Jan 2021 20:19:54 +0900 Subject: babelfish: init at version 0.1.3 --- pkgs/shells/fish/babelfish.nix | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 pkgs/shells/fish/babelfish.nix (limited to 'pkgs/shells/fish') diff --git a/pkgs/shells/fish/babelfish.nix b/pkgs/shells/fish/babelfish.nix new file mode 100644 index 000000000000..bfe01740f140 --- /dev/null +++ b/pkgs/shells/fish/babelfish.nix @@ -0,0 +1,21 @@ +{ lib, stdenv, buildGoModule, fetchFromGitHub }: +buildGoModule rec { + pname = "babelfish"; + version = "0.1.3"; + + src = fetchFromGitHub { + owner = "bouk"; + repo = "babelfish"; + rev = "v${version}"; + sha256 = "08i4y4fw60ynamr1jz8nkfkidxj06vcyhi1v4wxpl2macn6n4skk"; + }; + + vendorSha256 = "0xjy50wciw329kq1nkd7hhaipcp4fy28hhk6cdq21qwid6g21gag"; + + meta = with lib; { + description = "Translate bash scripts to fish"; + homepage = "https://github.com/bouk/babelfish"; + license = licenses.mit; + maintainers = with maintainers; [ bouk kevingriffin ]; + }; +} -- cgit 1.4.1