diff options
Diffstat (limited to 'pkgs/tools/nix/fh/default.nix')
-rw-r--r-- | pkgs/tools/nix/fh/default.nix | 59 |
1 files changed, 0 insertions, 59 deletions
diff --git a/pkgs/tools/nix/fh/default.nix b/pkgs/tools/nix/fh/default.nix deleted file mode 100644 index 7e99d3aa068a..000000000000 --- a/pkgs/tools/nix/fh/default.nix +++ /dev/null @@ -1,59 +0,0 @@ -{ lib -, rustPlatform -, fetchFromGitHub -, installShellFiles -, stdenv -, darwin -, gcc -, libcxx -, cacert -}: - -rustPlatform.buildRustPackage rec { - pname = "fh"; - version = "0.1.17"; - - src = fetchFromGitHub { - owner = "DeterminateSystems"; - repo = "fh"; - rev = "v${version}"; - hash = "sha256-+Q7mZ2uzMjShKWVvYLz9qH8g0w8oP93lNlJiYxFFoAI="; - }; - - cargoHash = "sha256-DJOj9EJswnPIm66u585k4ZWSi6Su/naQ+myQuLiGLFE="; - - nativeBuildInputs = [ - installShellFiles - rustPlatform.bindgenHook - ]; - - checkInputs = [ cacert ]; - - buildInputs = lib.optionals stdenv.isDarwin [ - darwin.apple_sdk.frameworks.Security - darwin.apple_sdk.frameworks.SystemConfiguration - gcc.cc.lib - ]; - - env = lib.optionalAttrs stdenv.isDarwin { - NIX_CFLAGS_COMPILE = "-I${lib.getDev libcxx}/include/c++/v1"; - }; - - postInstall = lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) '' - installShellCompletion --cmd fh \ - --bash <($out/bin/fh completion bash) \ - --fish <($out/bin/fh completion fish) \ - --zsh <($out/bin/fh completion zsh) - ''; - - __darwinAllowLocalNetworking = true; - - meta = with lib; { - description = "Official FlakeHub CLI"; - homepage = "https://github.com/DeterminateSystems/fh"; - changelog = "https://github.com/DeterminateSystems/fh/releases/tag/${src.rev}"; - license = licenses.asl20; - maintainers = with maintainers; [ figsoda ]; - mainProgram = "fh"; - }; -} |