nushell: 0.72.1 -> 0.73

This commit is contained in:
Aidan Gauland 2022-12-24 15:26:08 +13:00
parent 47e3a91333
commit eb416f1bc0
No known key found for this signature in database
GPG Key ID: 16E68DD2D0E77C91

View File

@ -26,26 +26,16 @@
rustPlatform.buildRustPackage rec {
pname = "nushell";
version = "0.72.1";
version = "0.73.0";
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = version;
sha256 = "sha256-OVJr+usN+47yBHFAy94rIVlU2F+Klo6xdrV2MwUoKUE=";
sha256 = "sha256-hxcB5nzhVjsC5XYR4Pt3GN4ZEgWpetQQZr0mj3bAnRc=";
};
patches = [
# https://github.com/nushell/nushell/pull/7423: make tests
# more resilient (less dependent on env).
# Already merged upstream, so can be dropped in the next version
(fetchpatch {
url = "https://github.com/nushell/nushell/commit/87631e7068bfc6635d5b31413856f0a791994527.patch";
hash = "sha256-9vrcmBe5gXLLodynb3jyarwi/a0YiurJ6WsDxXl2vjo=";
})
];
cargoSha256 = "sha256-v6mPr+gOT64rKYuog+hS7/AqUZDailoOBXX3Sfeo+sk=";
cargoSha256 = "sha256-pw+pBZeXuKSaP/qC3aiauXAH/BRR1rQZ2jVVmR1JQhU=";
# enable pkg-config feature of zstd
cargoPatches = [ ./zstd-pkg-config.patch ];