Skip to content

Instantly share code, notes, and snippets.

@betaboon
Last active June 12, 2019 17:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save betaboon/65cff26c5e1e554852c65752d75b1ba3 to your computer and use it in GitHub Desktop.
Save betaboon/65cff26c5e1e554852c65752d75b1ba3 to your computer and use it in GitHub Desktop.
Hunter
{ fetchFromGitHub, rustPlatform, stdenv }:
with rustPlatform;
buildRustPackage rec {
name = "hunter-${version}";
version = "1.2.3";
src = fetchFromGitHub {
owner = "rabite0";
repo = "hunter";
rev = "v${version}";
sha256 = "040m6kxgajaiwsywnnmdbapplcmpry100vkwangkld7468naqi75";
};
cargoSha256 = "1h78hyzqgijyadapllc2gyjika2009x09mkx4ha535car1xwjnv9";
meta = {
description = "ranger-like file browser written in rust";
homepage = https://github.com/rabite0/hunter;
license = stdenv.lib.licenses.wtfpl;
platforms = stdenv.lib.platforms.unix;
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment