lol

xplr: 0.21.9 -> 1.0.0 (#405125)

authored by

Arijit Basu and committed by
GitHub
05f9e0a1 933c03dd

+4 -5
+4 -5
pkgs/by-name/xp/xplr/package.nix
··· 4 rustPlatform, 5 fetchFromGitHub, 6 }: 7 - 8 rustPlatform.buildRustPackage rec { 9 pname = "xplr"; 10 - version = "0.21.9"; 11 12 src = fetchFromGitHub { 13 owner = "sayanarijit"; 14 repo = pname; 15 rev = "v${version}"; 16 - hash = "sha256-0c2QJUEQwKEzzDBDP5XdX7xe1rivazsoZtepB4Dxp/c="; 17 }; 18 19 useFetchCargoVendor = true; 20 - cargoHash = "sha256-D8BYJtf6joAXyqLDdAeP4GGAA9W5dvA16ia4/ZeZWaE="; 21 22 # fixes `thread 'main' panicked at 'cannot find strip'` on x86_64-darwin 23 env = lib.optionalAttrs (stdenv.hostPlatform.isx86_64 && stdenv.hostPlatform.isDarwin) { ··· 26 27 # error: linker `aarch64-linux-gnu-gcc` not found 28 postPatch = '' 29 - rm .cargo/config 30 ''; 31 32 postInstall = ''
··· 4 rustPlatform, 5 fetchFromGitHub, 6 }: 7 rustPlatform.buildRustPackage rec { 8 pname = "xplr"; 9 + version = "1.0.0"; 10 11 src = fetchFromGitHub { 12 owner = "sayanarijit"; 13 repo = pname; 14 rev = "v${version}"; 15 + hash = "sha256-QeR7KXwRGfAU31ueI6v26pKnoQdj2C7bXlcMP4qKvZg="; 16 }; 17 18 useFetchCargoVendor = true; 19 + cargoHash = "sha256-UkyRl2eY520JPxtcOl7hvkY3MCH2bi2jL9zCJEdkQmU="; 20 21 # fixes `thread 'main' panicked at 'cannot find strip'` on x86_64-darwin 22 env = lib.optionalAttrs (stdenv.hostPlatform.isx86_64 && stdenv.hostPlatform.isDarwin) { ··· 25 26 # error: linker `aarch64-linux-gnu-gcc` not found 27 postPatch = '' 28 + rm .cargo/config.toml 29 ''; 30 31 postInstall = ''