jujutsu: 0.8.0 -> 0.9.0

Diff: https://github.com/martinvonz/jj/compare/v0.8.0...0.9.0

Changelog: https://github.com/martinvonz/jj/blob/v0.9.0/CHANGELOG.md

authored by Muhammad Falak R Wani and committed by Austin Seipp b3728398 f802f6d1

+3 -13
+3 -13
pkgs/applications/version-management/jujutsu/default.nix
··· 20 20 21 21 rustPlatform.buildRustPackage rec { 22 22 pname = "jujutsu"; 23 - version = "0.8.0"; 23 + version = "0.9.0"; 24 24 25 25 src = fetchFromGitHub { 26 26 owner = "martinvonz"; 27 27 repo = "jj"; 28 28 rev = "v${version}"; 29 - sha256 = "sha256-kbJWkCnb77VRKemA8WejaChaQYCxNiVMbqW5PCrDoE8="; 29 + sha256 = "sha256-5RN2xaH591/83iNXRcW9i/TyU5ndPZq3P/BesHM9I6w="; 30 30 }; 31 31 32 - cargoHash = "sha256-qbCOVcKpNGWGonRAwPsr3o3yd+7qUTy3IVmC3Ifn4xE="; 32 + cargoHash = "sha256-G4W3GeTWTuIZO1PupuZ0hACwhNoNBQhULyT9f6qVckg="; 33 33 34 34 buildNoDefaultFeatures = true; 35 35 buildFeatures = [ 36 36 # enable 'packaging' feature, which enables extra features such as support 37 37 # for watchman 38 38 "packaging" 39 - ]; 40 - 41 - patches = [ 42 - # this patch (hopefully!) fixes a very, very rare test failure that can 43 - # occasionally be cajoled out of Nix and GitHub CI builds. go ahead and 44 - # apply it to be safe. 45 - (fetchpatch { 46 - url = "https://github.com/martinvonz/jj/commit/8e7e32710d29010423f3992bb920aaf2a0fa04ec.patch"; 47 - hash = "sha256-ySieobB1P/DpWOurcCb4BXoHk9IqrjzMfzdc3O5cTXk="; 48 - }) 49 39 ]; 50 40 51 41 cargoBuildFlags = [ "--bin" "jj" ]; # don't install the fake editors