nixpkgs/pkgs/tools/misc/mods/default.nix

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

44 lines
904 B
Nix
Raw Normal View History

2023-05-14 12:44:04 +01:00
{ lib
, buildGoModule
, fetchFromGitHub
, gitUpdater
, testers
, mods
2023-05-14 12:44:04 +01:00
}:
buildGoModule rec {
pname = "mods";
2023-11-26 15:09:40 +00:00
version = "1.1.0";
2023-05-14 12:44:04 +01:00
src = fetchFromGitHub {
owner = "charmbracelet";
repo = "mods";
rev = "v${version}";
2023-11-26 15:09:40 +00:00
hash = "sha256-ZWH3YuN1cmdw96/HVzsp1u70ziUfupUeBjJiNI5a538=";
2023-05-14 12:44:04 +01:00
};
2023-11-26 15:09:40 +00:00
vendorHash = "sha256-PgaxqfgtwBYnzyL2F/OPJP1rdmLOtBCTKEPhMgvC6XA=";
2023-05-14 12:44:04 +01:00
2023-11-26 15:09:40 +00:00
ldflags = [ "-s" "-w" "-X=main.Version=${version}" ];
2023-05-14 12:44:04 +01:00
passthru = {
updateScript = gitUpdater {
rev-prefix = "v";
ignoredVersions = ".(rc|beta).*";
};
tests.version = testers.testVersion {
package = mods;
command = "HOME=$(mktemp -d) mods -v";
};
};
2023-05-14 12:44:04 +01:00
meta = with lib; {
description = "AI on the command line";
homepage = "https://github.com/charmbracelet/mods";
license = licenses.mit;
maintainers = with maintainers; [ dit7ya ];
2023-11-27 01:17:53 +00:00
mainProgram = "mods";
2023-05-14 12:44:04 +01:00
};
}