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
This commit is contained in:
parent
cd273cd6ba
commit
22eb09728d
@ -2,19 +2,19 @@
|
|||||||
|
|
||||||
rustPlatform.buildRustPackage rec {
|
rustPlatform.buildRustPackage rec {
|
||||||
pname = "handlr";
|
pname = "handlr";
|
||||||
version = "0.6.4";
|
version = "unstable-2021-08-29";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "chmln";
|
owner = "chmln";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = "v${version}";
|
rev = "90e78ba92d0355cb523abf268858f3123fd81238";
|
||||||
sha256 = "sha256-UYcJtBwbUDqDiRoj5PmO+urURfd7S7fSx2XhQRBrKTE=";
|
sha256 = "sha256-wENhlUBwfNg/r7yMKa1cQI1fbFw+qowwK8EdO912Yys=";
|
||||||
};
|
};
|
||||||
|
|
||||||
cargoSha256 = "sha256-xDQV8wVlzItz0lzR1nVRPVsg7nSf/khUhevDlGgSO3g=";
|
cargoSha256 = "sha256-30fSOzWq1CoIabPWGWndi/SaCN/ckxjlbtzuwV8rk6M=";
|
||||||
|
|
||||||
nativeBuildInputs = [ installShellFiles shared-mime-info ];
|
nativeBuildInputs = [ installShellFiles shared-mime-info ];
|
||||||
buildInputs = lib.optional stdenv.isDarwin libiconv;
|
buildInputs = lib.optionals stdenv.isDarwin [ libiconv ];
|
||||||
|
|
||||||
preCheck = ''
|
preCheck = ''
|
||||||
export HOME=$TEMPDIR
|
export HOME=$TEMPDIR
|
||||||
@ -23,6 +23,7 @@ rustPlatform.buildRustPackage rec {
|
|||||||
postInstall = ''
|
postInstall = ''
|
||||||
installShellCompletion \
|
installShellCompletion \
|
||||||
--zsh completions/_handlr \
|
--zsh completions/_handlr \
|
||||||
|
--bash completions/handlr \
|
||||||
--fish completions/handlr.fish
|
--fish completions/handlr.fish
|
||||||
'';
|
'';
|
||||||
|
|
||||||
@ -30,6 +31,6 @@ rustPlatform.buildRustPackage rec {
|
|||||||
description = "Alternative to xdg-open to manage default applications with ease";
|
description = "Alternative to xdg-open to manage default applications with ease";
|
||||||
homepage = "https://github.com/chmln/handlr";
|
homepage = "https://github.com/chmln/handlr";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
maintainers = with maintainers; [ mredaelli ];
|
maintainers = with maintainers; [ mredaelli artturin ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user