Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

babelfish: init at 0.1.3 #108946

Merged
merged 2 commits into from
Jan 12, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions maintainers/maintainer-list.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4666,6 +4666,12 @@
githubId = 494012;
name = "Kevin Cox";
};
kevingriffin = {
SuperSandro2000 marked this conversation as resolved.
Show resolved Hide resolved
email = "[email protected]";
github = "kevingriffin";
githubId = 209729;
name = "Kevin Griffin";
};
kfollesdal = {
email = "[email protected]";
github = "kfollesdal";
Expand Down
21 changes: 21 additions & 0 deletions pkgs/shells/fish/babelfish.nix
Original file line number Diff line number Diff line change
@@ -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 ];
cole-h marked this conversation as resolved.
Show resolved Hide resolved
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -1498,6 +1498,8 @@ in

babeld = callPackage ../tools/networking/babeld { };

babelfish = callPackage ../shells/fish/babelfish.nix { };

badchars = python3Packages.callPackage ../tools/security/badchars { };

badvpn = callPackage ../tools/networking/badvpn {};
Expand Down