nixpkgs/pkgs/by-name/oh/oh-my-posh/package.nix

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

63 lines
1.5 KiB
Nix
Raw Normal View History

2022-12-04 11:57:13 +00:00
{ lib
, buildGoModule
, fetchFromGitHub
, installShellFiles
}:
2022-08-01 16:21:38 +01:00
buildGoModule rec {
pname = "oh-my-posh";
2024-10-01 13:26:28 +01:00
version = "23.15.0";
2022-08-01 16:21:38 +01:00
src = fetchFromGitHub {
owner = "jandedobbeleer";
repo = pname;
2022-12-04 11:57:13 +00:00
rev = "refs/tags/v${version}";
2024-10-01 13:26:28 +01:00
hash = "sha256-gZCR7cDSI0gRaTnYADOLpyHe26URo27JXJjnNxr4Jwc=";
2022-08-01 16:21:38 +01:00
};
2024-09-23 04:55:30 +01:00
vendorHash = "sha256-EBLfbdTV15wSTOThzBY0d2KrSJzRaB8vNH53Uwc+XfM=";
2022-08-01 16:21:38 +01:00
sourceRoot = "${src.name}/src";
2022-08-01 16:21:38 +01:00
2022-12-04 11:57:13 +00:00
nativeBuildInputs = [
installShellFiles
];
2022-09-24 19:27:00 +01:00
2022-12-04 11:57:13 +00:00
ldflags = [
"-s"
"-w"
2023-07-08 23:10:00 +01:00
"-X github.com/jandedobbeleer/oh-my-posh/src/build.Version=${version}"
"-X github.com/jandedobbeleer/oh-my-posh/src/build.Date=1970-01-01T00:00:00Z"
2022-12-04 11:57:13 +00:00
];
2022-08-01 16:21:38 +01:00
2022-12-04 11:57:13 +00:00
tags = [
"netgo"
"osusergo"
"static_build"
];
postPatch = ''
# these tests requires internet access
2024-07-23 03:35:31 +01:00
rm image/image_test.go config/migrate_glyphs_test.go upgrade/notice_test.go
'';
postInstall = ''
mv $out/bin/{src,oh-my-posh}
mkdir -p $out/share/oh-my-posh
cp -r ${src}/themes $out/share/oh-my-posh/
2022-09-24 19:27:00 +01:00
installShellCompletion --cmd oh-my-posh \
--bash <($out/bin/oh-my-posh completion bash) \
--fish <($out/bin/oh-my-posh completion fish) \
--zsh <($out/bin/oh-my-posh completion zsh)
'';
2022-08-01 16:21:38 +01:00
meta = with lib; {
description = "Prompt theme engine for any shell";
mainProgram = "oh-my-posh";
2022-08-01 16:21:38 +01:00
homepage = "https://ohmyposh.dev";
2022-12-04 11:57:13 +00:00
changelog = "https://github.com/JanDeDobbeleer/oh-my-posh/releases/tag/v${version}";
2022-08-01 16:21:38 +01:00
license = licenses.mit;
maintainers = with maintainers; [ lucperkins urandom ];
2022-08-01 16:21:38 +01:00
};
}