mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 08:53:21 +00:00
77743bb232
Signed-off-by: phanirithvij <phanirithvij2000@gmail.com>
31 lines
736 B
Nix
31 lines
736 B
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "distrobox-tui";
|
|
version = "0.1.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "phanirithvij";
|
|
repo = "distrobox-tui";
|
|
rev = "v${version}";
|
|
hash = "sha256-J5stvhUNaU9YMczE56vC5bw2g67zsdVWiCi8k6KV/pU=";
|
|
};
|
|
|
|
vendorHash = "sha256-F7X3FBM/F0uPxbM3en0sk9a58O/meKnVsASgIlL7FCo=";
|
|
|
|
ldflags = [ "-s" ];
|
|
|
|
meta = with lib; {
|
|
description = "A TUI for DistroBox";
|
|
changelog = "https://github.com/phanirithvij/distrobox-tui/releases/tag/v${version}";
|
|
homepage = "https://github.com/phanirithvij/distrobox-tui";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ phanirithvij ];
|
|
mainProgram = "distrobox-tui";
|
|
};
|
|
}
|