anyrun: 25.9.0-pre-release.1-unstable-2025-08-19 -> 25.9.0 (#440213)

authored by Austin Horstman and committed by GitHub b5abbe01 993a4bbf

+13 -15
+13 -15
pkgs/by-name/an/anyrun/package.nix
··· 3 rustPlatform, 4 fetchFromGitHub, 5 pkg-config, 6 - wrapGAppsHook3, 7 - atk, 8 cairo, 9 gdk-pixbuf, 10 glib, 11 - gtk3, 12 pango, 13 wayland, 14 - gtk-layer-shell, 15 nix-update-script, 16 }: 17 18 - rustPlatform.buildRustPackage { 19 pname = "anyrun"; 20 - version = "25.9.0.pre-release.1-unstable-2025-08-19"; 21 22 src = fetchFromGitHub { 23 owner = "anyrun-org"; 24 repo = "anyrun"; 25 - rev = "af1ffe4f17921825ff2a773995604dce2b2df3cd"; 26 - hash = "sha256-PKxVhfjd2AlzTopuVEx5DJMC4R7LnM5NIoMmirKMsKI="; 27 }; 28 29 - cargoHash = "sha256-KpAnfytTtCJunhpk9exv8LYtF8mKDGFUUbsPP47M+Kk="; 30 31 strictDeps = true; 32 enableParallelBuilding = true; ··· 34 35 nativeBuildInputs = [ 36 pkg-config 37 - wrapGAppsHook3 38 ]; 39 40 buildInputs = [ 41 - atk 42 cairo 43 gdk-pixbuf 44 glib 45 - gtk3 46 - gtk-layer-shell 47 pango 48 wayland 49 ]; ··· 58 install -Dm444 anyrun/res/style.css examples/config.ron -t $out/share/doc/anyrun/examples/ 59 ''; 60 61 - passthru.updateScript = nix-update-script { extraArgs = [ "--version=branch" ]; }; 62 63 meta = { 64 description = "Wayland-native, highly customizable runner"; ··· 71 mainProgram = "anyrun"; 72 platforms = lib.platforms.linux; 73 }; 74 - }
··· 3 rustPlatform, 4 fetchFromGitHub, 5 pkg-config, 6 + wrapGAppsHook4, 7 cairo, 8 gdk-pixbuf, 9 glib, 10 + gtk4, 11 pango, 12 wayland, 13 + gtk4-layer-shell, 14 nix-update-script, 15 }: 16 17 + rustPlatform.buildRustPackage (finalAttrs: { 18 pname = "anyrun"; 19 + version = "25.9.0"; 20 21 src = fetchFromGitHub { 22 owner = "anyrun-org"; 23 repo = "anyrun"; 24 + tag = "v${finalAttrs.version}"; 25 + hash = "sha256-01XBO8U2PyhhYXo3oZAu7dghqXkxdemeG82MqnNp4wE="; 26 }; 27 28 + cargoHash = "sha256-Xh+RWrAxa1cg0z6IGr7apzoAIlhDl8ZMpQTfoBAZXRk="; 29 30 strictDeps = true; 31 enableParallelBuilding = true; ··· 33 34 nativeBuildInputs = [ 35 pkg-config 36 + wrapGAppsHook4 37 ]; 38 39 buildInputs = [ 40 cairo 41 gdk-pixbuf 42 glib 43 + gtk4 44 + gtk4-layer-shell 45 pango 46 wayland 47 ]; ··· 56 install -Dm444 anyrun/res/style.css examples/config.ron -t $out/share/doc/anyrun/examples/ 57 ''; 58 59 + passthru.updateScript = nix-update-script { }; 60 61 meta = { 62 description = "Wayland-native, highly customizable runner"; ··· 69 mainProgram = "anyrun"; 70 platforms = lib.platforms.linux; 71 }; 72 + })