Skip to content

Commit

Permalink
ficsit-cli: init at 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
weirdrock committed Feb 22, 2025
1 parent 8fc18f2 commit 517baab
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions pkgs/by-name/fi/ficsit-cli/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
{
lib,
stdenv,
buildGoModule,
fetchFromGitHub,
}:
buildGoModule rec {
pname = "ficsit-cli";
version = "0.6.0";
commit = "5dc8bdbaf6e8d9b1bcd2895e389d9d072d454e15";

src = fetchFromGitHub {
owner = "satisfactorymodding";
repo = "ficsit-cli";
tag = "v${version}";
hash = "sha256-Zwidx0war3hos9NEmk9dEzPBgDGdUtWvZb7FIF5OZMA=";
};

ldflags = [
"-X=main.version=v${version}"
"-X=main.commit=${commit}"
];

doCheck = false; # Tests make an api call, which always fails in the sandbox.

vendorHash = "sha256-vmA3jvxOLRYj5BmvWMhSEnCTEoe8BLm8lpm2kruIEv4=";

meta = {
description = "CLI tool for managing Satisfactory mods";
homepage = "https://github.com/satisfactorymodding/ficsit-cli";
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [
weirdrock
vilsol
];
};
}

0 comments on commit 517baab

Please sign in to comment.