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: 1285d739d823
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 6518e5f9cff9
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Mar 2, 2019

  1. fish: 3.0.1 -> 3.0.2

    qolii committed Mar 2, 2019
    Copy the full SHA
    dc84a65 View commit details

Commits on Mar 3, 2019

  1. Merge pull request #56735 from qolii/fish_update_301_302

    fish: 3.0.1 -> 3.0.2
    etu authored Mar 3, 2019

    Verified

    This commit was signed with the committer’s verified signature.
    Mic92 Jörg Thalheim
    Copy the full SHA
    6518e5f View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/shells/fish/default.nix
4 changes: 2 additions & 2 deletions pkgs/shells/fish/default.nix
Original file line number Diff line number Diff line change
@@ -89,15 +89,15 @@ let

fish = stdenv.mkDerivation rec {
name = "fish-${version}";
version = "3.0.1";
version = "3.0.2";

etcConfigAppendix = builtins.toFile "etc-config.appendix.fish" etcConfigAppendixText;

src = fetchurl {
# There are differences between the release tarball and the tarball github packages from the tag
# Hence we cannot use fetchFromGithub
url = "https://github.com/fish-shell/fish-shell/releases/download/${version}/${name}.tar.gz";
sha256 = "1r55xgnacjxglban15ln3fw8p3q60k0pk0fgsax3h5zfambplrr1";
sha256 = "03j3jl9jzlnhq4p86zj8wqsh5sx45j1d1fvfa80ks1cfdg68qwhl";
};

nativeBuildInputs = [ cmake ];