Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: aa4a14b7ad26
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 85fda489f892
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Jan 16, 2021

  1. babelfish: 0.1.3 -> 1.0.0

    Notably, adds support for stdout redirections and fixes a failing test.
    cole-h committed Jan 16, 2021

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    Copy the full SHA
    86b8326 View commit details
  2. Merge pull request #109541 from cole-h/babelfish

    babelfish: 0.1.3 -> 1.0.0
    SuperSandro2000 authored Jan 16, 2021

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    Copy the full SHA
    85fda48 View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/shells/fish/babelfish.nix
6 changes: 3 additions & 3 deletions pkgs/shells/fish/babelfish.nix
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
{ lib, stdenv, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "babelfish";
version = "0.1.3";
version = "1.0.0";

src = fetchFromGitHub {
owner = "bouk";
repo = "babelfish";
rev = "v${version}";
sha256 = "08i4y4fw60ynamr1jz8nkfkidxj06vcyhi1v4wxpl2macn6n4skk";
sha256 = "A5FUnER25FDkL/K7RCqudZI6Xd5wg9B8aLbYUw6+7BA=";
};

vendorSha256 = "0xjy50wciw329kq1nkd7hhaipcp4fy28hhk6cdq21qwid6g21gag";
vendorSha256 = "T70gnmmR4yBwY2ZCiIR35LIbFYSnTRvwTGLwyDgoXnY=";

meta = with lib; {
description = "Translate bash scripts to fish";