nixpkgs/pkgs/applications/file-managers/walk/default.nix

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

24 lines
584 B
Nix
Raw Normal View History

2023-08-23 13:23:04 +00:00
{ buildGoModule, fetchFromGitHub, lib }:
buildGoModule rec {
pname = "walk";
2023-10-29 19:29:39 +00:00
version = "1.7.0";
2023-08-23 13:23:04 +00:00
src = fetchFromGitHub {
owner = "antonmedv";
repo = "walk";
rev = "v${version}";
2023-10-29 19:29:39 +00:00
hash = "sha256-hif62WAyJyFHpJoP3ph7gJk1QkEL7qkcv/BJuoXkwFU=";
2023-08-23 13:23:04 +00:00
};
2023-10-29 19:29:39 +00:00
vendorHash = "sha256-e292ke0JiFEopLSozb+FkpwzSuhpIs/PdWOYuNI2M2o=";
2023-08-23 13:23:04 +00:00
meta = with lib; {
description = "Terminal file manager";
homepage = "https://github.com/antonmedv/walk";
license = licenses.mit;
maintainers = with maintainers; [ portothree surfaceflinger ];
mainProgram = "walk";
};
}