windsend-rs: 1.5.4 -> 1.5.5 (#428176)

authored by Pol Dellaiera and committed by GitHub ec250cb6 616f71f0

+15 -17
+15 -17
pkgs/by-name/wi/windsend-rs/package.nix
··· 1 { 2 lib, 3 - fetchFromGitHub, 4 rustPlatform, 5 pkg-config, 6 - wayland, 7 - openssl, 8 glib, 9 gtk3, 10 xdotool, 11 - libayatana-appindicator, 12 makeDesktopItem, 13 - copyDesktopItems, 14 nix-update-script, 15 }: 16 17 - rustPlatform.buildRustPackage rec { 18 pname = "windsend-rs"; 19 - version = "1.5.4"; 20 21 src = fetchFromGitHub { 22 owner = "doraemonkeys"; 23 repo = "WindSend"; 24 - tag = "v${version}"; 25 - hash = "sha256-A0cmjllyhKkYsMyjeuuMCax0uVnaDp9OwJPY7peDjPM="; 26 }; 27 28 - useFetchCargoVendor = true; 29 30 - cargoHash = "sha256-9zuD3korJGIcarBV0bSSV/g/Q0niWAMqgRfwpPXCuBU="; 31 - 32 - sourceRoot = "${src.name}/windSend-rs"; 33 34 nativeBuildInputs = [ 35 - pkg-config 36 copyDesktopItems 37 ]; 38 39 buildInputs = [ 40 - wayland 41 - openssl 42 glib 43 gtk3 44 xdotool 45 ]; 46 ··· 71 maintainers = with lib.maintainers; [ ]; 72 platforms = lib.platforms.linux; 73 }; 74 - }
··· 1 { 2 lib, 3 rustPlatform, 4 + fetchFromGitHub, 5 + copyDesktopItems, 6 pkg-config, 7 glib, 8 gtk3, 9 + openssl, 10 + wayland, 11 xdotool, 12 makeDesktopItem, 13 + libayatana-appindicator, 14 nix-update-script, 15 }: 16 17 + rustPlatform.buildRustPackage (finalAttrs: { 18 pname = "windsend-rs"; 19 + version = "1.5.5"; 20 21 src = fetchFromGitHub { 22 owner = "doraemonkeys"; 23 repo = "WindSend"; 24 + tag = "v${finalAttrs.version}"; 25 + hash = "sha256-u82VmMuc7+tbc1Qgs5lbyFlNTauJm6E9KFXPHBdTryA="; 26 }; 27 28 + cargoHash = "sha256-dn6O2cCOPInktrKrcZBwN2FwmKUjm3crCL6yhIPQj/Y="; 29 30 + sourceRoot = "${finalAttrs.src.name}/windSend-rs"; 31 32 nativeBuildInputs = [ 33 copyDesktopItems 34 + pkg-config 35 ]; 36 37 buildInputs = [ 38 glib 39 gtk3 40 + openssl 41 + wayland 42 xdotool 43 ]; 44 ··· 69 maintainers = with lib.maintainers; [ ]; 70 platforms = lib.platforms.linux; 71 }; 72 + })