depot/third_party/nixpkgs/pkgs/by-name/su/superfile/package.nix
Default email 5c370c0b2a Project import generated by Copybara.
GitOrigin-RevId: 33d1e753c82ffc557b4a585c77de43d4c922ebb5
2024-05-15 17:35:15 +02:00

32 lines
754 B
Nix

{
lib,
buildGoModule,
fetchFromGitHub,
}:
let
version = "1.1.2";
in
buildGoModule {
pname = "superfile";
inherit version;
src =
fetchFromGitHub {
owner = "MHNightCat";
repo = "superfile";
rev = "v${version}";
hash = "sha256-Cn03oPGT+vCZQcC62p7COx8N8BGgra+qQaZyF+osVsA=";
}
+ "/src";
vendorHash = "sha256-gWrhy3qzlXG072u5mW971N2Y4Vmt0KbZkB8SFsFgSzo=";
meta = {
changelog = "https://github.com/MHNightCat/superfile/blob/v${version}/changelog.md";
description = "Pretty fancy and modern terminal file manager";
homepage = "https://github.com/MHNightCat/superfile";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ momeemt ];
mainProgram = "superfile";
};
}