nixpkgs/pkgs/applications/misc/gopacked/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
566 B
Nix
Raw Normal View History

2020-05-29 11:14:41 +00:00
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "gopacked";
version = "0.4.1";
src = fetchFromGitHub {
owner = "tulir";
repo = "gopacked";
rev = "v${version}";
2023-08-25 05:48:42 +00:00
hash = "sha256-PpOLLqgUQf09grZlJ7bXTxAowzDusmVN8PHfaGlGGQ8=";
2020-05-29 11:14:41 +00:00
};
2023-08-25 05:48:42 +00:00
vendorHash = "sha256-ooxVXNbqoh3XX3yFemAyqISNZ+PC8WJUe+ch2OnIdDo=";
2020-05-29 11:14:41 +00:00
doCheck = false;
2020-05-29 11:14:41 +00:00
meta = with lib; {
description = "Simple text-based Minecraft modpack manager";
2024-03-19 12:26:06 +00:00
license = licenses.agpl3Plus;
2020-05-29 11:14:41 +00:00
homepage = src.meta.homepage;
maintainers = with maintainers; [ ];
2020-05-29 11:14:41 +00:00
};
}