Skip to content

Commit

Permalink
gomanagedocker: init at 1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
genga898 committed Oct 8, 2024
1 parent 4a466a7 commit 454dd14
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions pkgs/by-name/go/gomanagedocker/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
{
lib,
buildGoModule,
fetchFromGitHub,
stdenv,
darwin,
xorg,
}:
let
version = "1.4";
in
buildGoModule {
pname = "gomanagedocker";
inherit version;

src = fetchFromGitHub {
owner = "ajayd-san";
repo = "gomanagedocker";
rev = "refs/tags/v${version}";
hash = "sha256-oM0DCOHdVPJFWgmHF8yeGGo6XvuTCXar7NebM1obahg=";
};

vendorHash = "sha256-M/jfQWCBrv7hZm450yLBmcjWtNSCziKOpfipxI6U9ak=";

buildInputs =
lib.optionals stdenv.isDarwin [ darwin.apple_sdk.frameworks.Cocoa ]
++ lib.optionals stdenv.isLinux [ xorg.libX11 ];

ldflags = [
"-s"
"-w"
];

meta = {
description = "TUI tool to manage your docker images, containers and volumes";
homepage = "https://github.com/ajayd-san/gomanagedocker";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ genga898 ];
mainProgram = "gomanagedocker";
};
}

0 comments on commit 454dd14

Please sign in to comment.