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
585 B
Nix
Raw Normal View History

2023-08-23 15:23:04 +02:00
{ buildGoModule, fetchFromGitHub, lib }:
buildGoModule rec {
pname = "walk";
2024-06-27 19:01:53 +02:00
version = "1.10.0";
2023-08-23 15:23:04 +02:00
src = fetchFromGitHub {
owner = "antonmedv";
repo = "walk";
rev = "v${version}";
2024-06-27 19:01:53 +02:00
hash = "sha256-wGiRMNgp5NZVj8ILyQ2C/iqpjv4XgphRfWcF/CSMj48=";
2023-08-23 15:23:04 +02:00
};
2024-06-27 19:01:53 +02:00
vendorHash = "sha256-MTM7zR5OYHbzAm07FTLvXVnESARg50/BZrB2bl+LtXM=";
2023-08-23 15:23:04 +02:00
meta = with lib; {
description = "Terminal file manager";
homepage = "https://github.com/antonmedv/walk";
license = licenses.mit;
maintainers = with maintainers; [ portothree surfaceflinger ];
mainProgram = "walk";
};
}