Merge pull request #116790 from mredaelli/handlr

handlr: init at 0.5.0
This commit is contained in:
Sandro 2021-03-22 00:24:31 +01:00 committed by GitHub
commit 64fefe03d5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,25 @@
{ lib, rustPlatform, fetchFromGitHub }:
rustPlatform.buildRustPackage rec {
pname = "handlr";
version = "0.5.0";
src = fetchFromGitHub {
owner = "chmln";
repo = pname;
rev = "v${version}";
sha256 = "1f4gmlqzgw1r8n0w9dr9lpsn94f2hlnak9bbq5xgf6jwgc9mwqzg";
};
cargoSha256 = "16d4dywwkgvvxw6ninrx87rqhx0whdq3yy01m27qjy4gz6z6ad8p";
# Most tests fail (at least some due to directory permissions)
doCheck = false;
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 ];
};
}

View File

@ -23831,6 +23831,8 @@ in
inherit (darwin) libobjc;
};
handlr = callPackage ../tools/misc/handlr { };
jftui = callPackage ../applications/video/jftui { };
lime = callPackage ../development/libraries/lime { };