swaysome: 2.1.2 -> 2.3.1 (#443719)

authored by

Yohann Boniface and committed by
GitHub
c5d2b193 b5baf132

+20 -10
+20 -10
pkgs/by-name/sw/swaysome/package.nix
··· 2 lib, 3 rustPlatform, 4 fetchFromGitLab, 5 }: 6 7 - rustPlatform.buildRustPackage rec { 8 pname = "swaysome"; 9 - version = "2.1.2"; 10 11 src = fetchFromGitLab { 12 owner = "hyask"; 13 repo = "swaysome"; 14 - rev = version; 15 - hash = "sha256-2Q88/XgPN+byEo3e1yvwcwSQxPgPTtgy/rNc/Yduo3U="; 16 }; 17 18 - cargoHash = "sha256-/TW1rPg/1t3n4XPBOEhgr1hd5PJMLwghLvQGBbZPZ34="; 19 20 - meta = with lib; { 21 description = "Helper to make sway behave more like awesomewm"; 22 homepage = "https://gitlab.com/hyask/swaysome"; 23 - license = licenses.mit; 24 - maintainers = with maintainers; [ esclear ]; 25 - platforms = platforms.linux; 26 mainProgram = "swaysome"; 27 }; 28 - }
··· 2 lib, 3 rustPlatform, 4 fetchFromGitLab, 5 + versionCheckHook, 6 }: 7 8 + rustPlatform.buildRustPackage (finalAttrs: { 9 pname = "swaysome"; 10 + version = "2.3.1"; 11 12 src = fetchFromGitLab { 13 owner = "hyask"; 14 repo = "swaysome"; 15 + tag = finalAttrs.version; 16 + hash = "sha256-/GJXZFa4HX98qJZw1CNM6PsP06EO8inIWDY6BWzQb8U="; 17 }; 18 19 + cargoHash = "sha256-+KjT5bako7l7lg2LW7Kxes7fIEnYQKUGGOMC56moO5g="; 20 + 21 + # failed to execute sway: Os { code: 2, kind: NotFound, message: "No such file or directory" } 22 + doCheck = false; 23 24 + doInstallCheck = true; 25 + 26 + nativeInstallCheckInputs = [ versionCheckHook ]; 27 + 28 + versionCheckProgramArg = "--version"; 29 + 30 + meta = { 31 description = "Helper to make sway behave more like awesomewm"; 32 homepage = "https://gitlab.com/hyask/swaysome"; 33 + license = lib.licenses.mit; 34 + maintainers = with lib.maintainers; [ esclear ]; 35 + platforms = lib.platforms.linux; 36 mainProgram = "swaysome"; 37 }; 38 + })