Unverified Commit c029d79d authored by r-vdp's avatar r-vdp
Browse files

atuin: 18.5.0 -> 18.6.0

parent cd6c09eb
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -8,19 +8,19 @@
  nix-update-script,
}:

rustPlatform.buildRustPackage rec {
rustPlatform.buildRustPackage (finalAttrs: {
  pname = "atuin";
  version = "18.5.0";
  version = "18.6.0";

  src = fetchFromGitHub {
    owner = "atuinsh";
    repo = "atuin";
    rev = "v${version}";
    hash = "sha256-VXbnf/TfMWGHHXccKZBX4/RWDT/J1kpSBzhML4973mo=";
    tag = finalAttrs.version;
    hash = "sha256-1EjBGnyVIoaHu4Mzf1ZumcPCM6ebhDlmplXZVPaOe2c=";
  };

  useFetchCargoVendor = true;
  cargoHash = "sha256-MQNveOBItVOHFNarU5xXl8xHoooSAVbA7JnxxuRI9To=";
  cargoHash = "sha256-WP2U1I83DojLeLnH2lZY0WjjuEnBvMM8wLZWcpQB1eQ=";

  # atuin's default features include 'check-updates', which do not make sense
  # for distribution builds. List all other default features.
@@ -73,4 +73,4 @@ rustPlatform.buildRustPackage rec {
    ];
    mainProgram = "atuin";
  };
}
})