mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-01 19:33:03 +00:00
55 lines
1.2 KiB
Nix
55 lines
1.2 KiB
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
, installShellFiles
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "oh-my-posh";
|
|
version = "12.26.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jandedobbeleer";
|
|
repo = pname;
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-c8O3kZefTZ/IvSRMRxR+Oc6L4Tkcl2PrnuflgbTb7eQ=";
|
|
};
|
|
|
|
vendorHash = "sha256-OrtKFkWXqVoXKmN6BT8YbCNjR1gRTT4gPNwmirn7fjU=";
|
|
|
|
sourceRoot = "source/src";
|
|
|
|
nativeBuildInputs = [
|
|
installShellFiles
|
|
];
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
"-X main.Version=${version}"
|
|
];
|
|
|
|
tags = [
|
|
"netgo"
|
|
"osusergo"
|
|
"static_build"
|
|
];
|
|
|
|
postInstall = ''
|
|
mkdir -p $out/share/oh-my-posh
|
|
cp -r ${src}/themes $out/share/oh-my-posh/
|
|
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)
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "A prompt theme engine for any shell";
|
|
homepage = "https://ohmyposh.dev";
|
|
changelog = "https://github.com/JanDeDobbeleer/oh-my-posh/releases/tag/v${version}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ lucperkins urandom ];
|
|
};
|
|
}
|