lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

handlr: 0.6.4 -> unstable-2021-08-29

the main thing this fixes is crash on read-only mimeapps therefore
making handlr usable with a home-manager managed mimeapps.list

Artturin 22eb0972 cd273cd6

+7 -6
+7 -6
pkgs/tools/misc/handlr/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "handlr"; 5 - version = "0.6.4"; 5 + version = "unstable-2021-08-29"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "chmln"; 9 9 repo = pname; 10 - rev = "v${version}"; 11 - sha256 = "sha256-UYcJtBwbUDqDiRoj5PmO+urURfd7S7fSx2XhQRBrKTE="; 10 + rev = "90e78ba92d0355cb523abf268858f3123fd81238"; 11 + sha256 = "sha256-wENhlUBwfNg/r7yMKa1cQI1fbFw+qowwK8EdO912Yys="; 12 12 }; 13 13 14 - cargoSha256 = "sha256-xDQV8wVlzItz0lzR1nVRPVsg7nSf/khUhevDlGgSO3g="; 14 + cargoSha256 = "sha256-30fSOzWq1CoIabPWGWndi/SaCN/ckxjlbtzuwV8rk6M="; 15 15 16 16 nativeBuildInputs = [ installShellFiles shared-mime-info ]; 17 - buildInputs = lib.optional stdenv.isDarwin libiconv; 17 + buildInputs = lib.optionals stdenv.isDarwin [ libiconv ]; 18 18 19 19 preCheck = '' 20 20 export HOME=$TEMPDIR ··· 23 23 postInstall = '' 24 24 installShellCompletion \ 25 25 --zsh completions/_handlr \ 26 + --bash completions/handlr \ 26 27 --fish completions/handlr.fish 27 28 ''; 28 29 ··· 30 31 description = "Alternative to xdg-open to manage default applications with ease"; 31 32 homepage = "https://github.com/chmln/handlr"; 32 33 license = licenses.mit; 33 - maintainers = with maintainers; [ mredaelli ]; 34 + maintainers = with maintainers; [ mredaelli artturin ]; 34 35 }; 35 36 }