mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 08:53:21 +00:00
distrobox-tui: init at 0.1.0
Signed-off-by: phanirithvij <phanirithvij2000@gmail.com>
This commit is contained in:
parent
69cb995812
commit
77743bb232
30
pkgs/by-name/di/distrobox-tui/package.nix
Normal file
30
pkgs/by-name/di/distrobox-tui/package.nix
Normal file
@ -0,0 +1,30 @@
|
||||
{
|
||||
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";
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user