Files
nixpkgs/pkgs/by-name/kd/kdoctor/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

45 lines
1.1 KiB
Nix

{
lib,
stdenv,
fetchurl,
unzip,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "kdoctor";
version = "1.1.0";
src = fetchurl {
url = "https://github.com/Kotlin/kdoctor/releases/download/v${finalAttrs.version}/kdoctor_${finalAttrs.version}+97.zip";
hash = "sha256-H4lpdMf1AIU8BC+6DlvcwM1wLuEl+Hd9xBli/TGFMV4=";
};
nativeBuildInputs = [ unzip ];
unpackPhase = ''
runHook preUnpack
unzip $src -x META-INF/*
runHook postUnpack
'';
installPhase = ''
runHook preInstall
install -Dm755 kdoctor -t $out/bin/
runHook postInstall
'';
meta = with lib; {
description = "Environment analysis tool for Kotlin Multiplatform Mobile";
longDescription = ''
KDoctor is a command-line tool that helps to set up the environment for
Kotlin Multiplatform Mobile app development.
'';
homepage = "https://github.com/Kotlin/kdoctor";
license = licenses.asl20;
mainProgram = "kdoctor";
maintainers = with maintainers; [ sironheart ];
platforms = platforms.darwin;
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
};
})