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

Commits on Mar 30, 2020

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

    zoxide: 0.2.2 -> 0.3.0
    bhipple authored Mar 30, 2020
    Copy the full SHA
    25467c4 View commit details
Showing with 9 additions and 5 deletions.
  1. +9 −5 pkgs/tools/misc/zoxide/default.nix
14 changes: 9 additions & 5 deletions pkgs/tools/misc/zoxide/default.nix
Original file line number Diff line number Diff line change
@@ -1,23 +1,27 @@
{ stdenv, fetchFromGitHub, rustPlatform, fzf }:
{ lib
, fetchFromGitHub
, rustPlatform
, fzf
}:

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

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

buildInputs = [
fzf
];

cargoSha256 = "1gzpkf7phl5xd666l7pc25917x4qq0kkxk4i9dkz3lvxz3v8ylrz";
cargoSha256 = "19fziapiv5w9wxslw47rf3lgc2lv7dyl3n8py6bsddq41fzay30w";

meta = with stdenv.lib; {
meta = with lib; {
description = "A fast cd command that learns your habits";
homepage = "https://github.com/ajeetdsouza/zoxide";
license = with licenses; [ mit ];