nixpkgs/pkgs/tools/misc/handlr/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

38 lines
1.0 KiB
Nix
Raw Normal View History

{ lib, stdenv, rustPlatform, fetchFromGitHub, shared-mime-info, libiconv, installShellFiles }:
2021-03-18 21:03:55 +00:00
rustPlatform.buildRustPackage rec {
pname = "handlr";
version = "unstable-2021-08-29";
2021-03-18 21:03:55 +00:00
src = fetchFromGitHub {
owner = "chmln";
repo = pname;
rev = "90e78ba92d0355cb523abf268858f3123fd81238";
sha256 = "sha256-wENhlUBwfNg/r7yMKa1cQI1fbFw+qowwK8EdO912Yys=";
2021-03-18 21:03:55 +00:00
};
cargoSha256 = "sha256-30fSOzWq1CoIabPWGWndi/SaCN/ckxjlbtzuwV8rk6M=";
2021-03-18 21:03:55 +00:00
nativeBuildInputs = [ installShellFiles shared-mime-info ];
buildInputs = lib.optionals stdenv.isDarwin [ libiconv ];
preCheck = ''
export HOME=$TEMPDIR
'';
2021-03-18 21:03:55 +00:00
postInstall = ''
installShellCompletion \
--zsh completions/_handlr \
--bash completions/handlr \
--fish completions/handlr.fish
'';
2021-03-18 21:03:55 +00:00
meta = with lib; {
description = "Alternative to xdg-open to manage default applications with ease";
homepage = "https://github.com/chmln/handlr";
license = licenses.mit;
maintainers = with maintainers; [ mredaelli artturin ];
2023-11-27 01:17:53 +00:00
mainProgram = "handlr";
2021-03-18 21:03:55 +00:00
};
}