mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-19 11:23:29 +00:00
superfile: init at 1.1.2
This commit is contained in:
parent
9f5db4665f
commit
2dd215d5c3
32
pkgs/by-name/su/superfile/package.nix
Normal file
32
pkgs/by-name/su/superfile/package.nix
Normal file
@ -0,0 +1,32 @@
|
||||
{
|
||||
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";
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user