22 lines
476 B
Nix
22 lines
476 B
Nix
{ buildGoModule, fetchFromGitHub }:
|
|
buildGoModule {
|
|
pname = "jjui";
|
|
version = "2024-11-28";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "GeoffreyFrogeye";
|
|
repo = "jjui";
|
|
rev = "push-sszqvsmvqxmy"; # base16 colors
|
|
sha256 = "sha256-jNi5Ek3Qy/MojlQXBNlqREy7UxnyMaJuUtKPysWBoNU=";
|
|
};
|
|
|
|
vendorHash = "sha256-kg5b3tzwyAhn00GwdUDf4OdYZvCJZHgkgpzHFWy5SxI=";
|
|
|
|
postInstall = ''
|
|
mv $out/bin/cmd $out/bin/jjui
|
|
'';
|
|
|
|
doCheck = false; # Some tests are not working
|
|
|
|
}
|