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

Commits on Apr 3, 2020

  1. Copy the full SHA
    654a471 View commit details
  2. Merge pull request #84200 from cole-h/zoxide

    zoxide: 0.3.0 -> 0.3.1
    worldofpeace authored Apr 3, 2020
    Copy the full SHA
    2fd3d51 View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/tools/misc/zoxide/default.nix
6 changes: 3 additions & 3 deletions pkgs/tools/misc/zoxide/default.nix
Original file line number Diff line number Diff line change
@@ -6,20 +6,20 @@

rustPlatform.buildRustPackage rec {
pname = "zoxide";
version = "0.3.0";
version = "0.3.1";

src = fetchFromGitHub {
owner = "ajeetdsouza";
repo = "zoxide";
rev = "v${version}";
sha256 = "0w4by34chm2baqldxx72bhjz8ggsllpir1df07gxi5fjkmil8jy9";
sha256 = "1sad18d0pxfdy9gvjmixzgdskg1l7djvzp0aipx7pz0lyi6gs23z";
};

buildInputs = [
fzf
];

cargoSha256 = "19fziapiv5w9wxslw47rf3lgc2lv7dyl3n8py6bsddq41fzay30w";
cargoSha256 = "1sx3s1jnfxylbjr3x6v6j8a6zkl7hfyj4alzlyrsw36b1b64pwqm";

meta = with lib; {
description = "A fast cd command that learns your habits";