depot/third_party/nixpkgs/pkgs/by-name/gs/gst/package.nix
Luke Granger-Brown f92e137cfb
Some checks failed
/ combine-systems (push) Blocked by required conditions
/ build (x86_64-linux) (push) Failing after 11m44s
/ build (aarch64-linux) (push) Failing after 11m50s
/ build (push) Failing after 16m42s
Merge commit '1e2ed035f4bebc9adad02b365508ad96f7df87c1' into HEAD
2025-03-02 02:23:32 +00:00

60 lines
1.3 KiB
Nix

{
lib,
buildGoModule,
fetchFromGitHub,
gitMinimal,
ghq,
}:
buildGoModule rec {
pname = "gst";
version = "5.0.5";
src = fetchFromGitHub {
owner = "uetchy";
repo = "gst";
rev = "v${version}";
hash = "sha256-NhbGHTYucfqCloVirkaDlAtQfhWP2cw4I+t/ysvvkR0=";
};
vendorHash = "sha256-kGPg6NyhVfVOn0BFQY83/VYdpUjOqaf5I4bev0uhvUw=";
doCheck = false;
nativeBuildInputs = [
gitMinimal
ghq
];
ldflags = [
"-s"
"-w"
"-X=main.Version=${version}"
];
doInstallCheck = true;
installCheckPhase = ''
if [[ "$("$out/bin/${pname}" --version)" == "${pname} version ${version}" ]]; then
export HOME=$(mktemp -d)
git config --global user.name "Test User"
git config --global user.email "test@example.com"
git config --global init.defaultBranch "main"
git config --global ghq.user "user"
ghq create test > /dev/null 2>&1
touch $HOME/ghq/github.com/user/test/SmokeTest
$out/bin/${pname} list | grep SmokeTest > /dev/null
echo '${pname} smoke check passed'
else
echo '${pname} smoke check failed'
return 1
fi
'';
meta = {
description = "Supercharge your ghq workflow";
homepage = "https://github.com/uetchy/gst";
maintainers = with lib.maintainers; [ _0x4A6F ];
license = lib.licenses.asl20;
mainProgram = "gst";
};
}