git-branchless: 0.7.1 -> 0.8.0

Diff: https://github.com/arxanas/git-branchless/compare/v0.7.1...0.8.0

+4 -3
+4 -3
pkgs/applications/version-management/git-branchless/default.nix
··· 14 15 rustPlatform.buildRustPackage rec { 16 pname = "git-branchless"; 17 - version = "0.7.1"; 18 19 src = fetchFromGitHub { 20 owner = "arxanas"; 21 repo = "git-branchless"; 22 rev = "v${version}"; 23 - sha256 = "sha256-9kyC9Uwmc2WNHgfKpnS3v8vNF2o+168ULWqE+2eX1cE="; 24 }; 25 26 - cargoHash = "sha256-k+Jx5PcA8TaFQQDYqZ6dTy8bwNtYeALF75ucoFjVGUc="; 27 28 nativeBuildInputs = [ pkg-config ]; 29 ··· 52 description = "A suite of tools to help you visualize, navigate, manipulate, and repair your commit history"; 53 homepage = "https://github.com/arxanas/git-branchless"; 54 license = licenses.gpl2Only; 55 maintainers = with maintainers; [ msfjarvis nh2 hmenke ]; 56 }; 57 }
··· 14 15 rustPlatform.buildRustPackage rec { 16 pname = "git-branchless"; 17 + version = "0.8.0"; 18 19 src = fetchFromGitHub { 20 owner = "arxanas"; 21 repo = "git-branchless"; 22 rev = "v${version}"; 23 + hash = "sha256-ev56NzrEF7xm3WmR2a0pHPs69Lvmb4He7+kIBYiJjKY="; 24 }; 25 26 + cargoHash = "sha256-Ppw5TN/6zMNxFAx90Q9hQ7RdGxV+TT8UlOm68ldK8oc="; 27 28 nativeBuildInputs = [ pkg-config ]; 29 ··· 52 description = "A suite of tools to help you visualize, navigate, manipulate, and repair your commit history"; 53 homepage = "https://github.com/arxanas/git-branchless"; 54 license = licenses.gpl2Only; 55 + mainProgram = "git-branchless"; 56 maintainers = with maintainers; [ msfjarvis nh2 hmenke ]; 57 }; 58 }