Merge pull request #242061 from figsoda/tyson
This commit is contained in:
commit
cecf8135f2
2 changed files with 42 additions and 0 deletions
40
pkgs/development/tools/misc/tyson/default.nix
Normal file
40
pkgs/development/tools/misc/tyson/default.nix
Normal file
|
@ -0,0 +1,40 @@
|
||||||
|
{ lib
|
||||||
|
, buildGoModule
|
||||||
|
, fetchFromGitHub
|
||||||
|
, installShellFiles
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildGoModule rec {
|
||||||
|
pname = "tyson";
|
||||||
|
version = "0.1.1";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "jetpack-io";
|
||||||
|
repo = "tyson";
|
||||||
|
rev = "v${version}";
|
||||||
|
hash = "sha256-c4ROLn+BSX7v/4C9/IeU6HiE2YvnqDuXXGp2iZhAVk4=";
|
||||||
|
};
|
||||||
|
|
||||||
|
vendorHash = "sha256-NhDv7oH8LK/vebwjs55tsCCWVhbZZd15z5ewOF5z9+Y=";
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
installShellFiles
|
||||||
|
];
|
||||||
|
|
||||||
|
ldflags = [ "-s" "-w" ];
|
||||||
|
|
||||||
|
postInstall = ''
|
||||||
|
installShellCompletion --cmd tyson \
|
||||||
|
--bash <($out/bin/tyson completion bash) \
|
||||||
|
--fish <($out/bin/tyson completion fish) \
|
||||||
|
--zsh <($out/bin/tyson completion zsh)
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "TypeScript as a configuration language";
|
||||||
|
homepage = "https://github.com/jetpack-io/tyson";
|
||||||
|
changelog = "https://github.com/jetpack-io/tyson/releases/tag/${src.rev}";
|
||||||
|
license = licenses.asl20;
|
||||||
|
maintainers = with maintainers; [ figsoda ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -19858,6 +19858,8 @@ with pkgs;
|
||||||
|
|
||||||
typical = callPackage ../development/tools/misc/typical { };
|
typical = callPackage ../development/tools/misc/typical { };
|
||||||
|
|
||||||
|
tyson = callPackage ../development/tools/misc/tyson { };
|
||||||
|
|
||||||
uddup = callPackage ../tools/security/uddup { };
|
uddup = callPackage ../tools/security/uddup { };
|
||||||
|
|
||||||
udis86 = callPackage ../development/tools/udis86 { };
|
udis86 = callPackage ../development/tools/udis86 { };
|
||||||
|
|
Loading…
Reference in a new issue