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

29 lines
709 B
Nix
Raw Normal View History

{ lib, rustPlatform, fetchFromGitHub, shared-mime-info }:
2021-03-18 21:03:55 +00:00
rustPlatform.buildRustPackage rec {
pname = "handlr";
2021-05-01 04:39:10 +00:00
version = "0.6.4";
2021-03-18 21:03:55 +00:00
src = fetchFromGitHub {
owner = "chmln";
repo = pname;
rev = "v${version}";
2021-05-01 04:39:10 +00:00
sha256 = "sha256-UYcJtBwbUDqDiRoj5PmO+urURfd7S7fSx2XhQRBrKTE=";
2021-03-18 21:03:55 +00:00
};
2021-05-01 04:39:10 +00:00
cargoSha256 = "sha256-xDQV8wVlzItz0lzR1nVRPVsg7nSf/khUhevDlGgSO3g=";
2021-03-18 21:03:55 +00:00
nativeBuildInputs = [ shared-mime-info ];
preCheck = ''
export HOME=$TEMPDIR
'';
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 ];
};
}