biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / azure-static-sites-client / default.nix
blob452976b7282a645808e10d764804eae6bf5ec3bb
1 { lib
2 , stdenv
3 , fetchurl
4 , autoPatchelfHook
5 , curl
6 , icu70
7 , libkrb5
8 , lttng-ust
9 , openssl
10 , zlib
11 , azure-static-sites-client
12   # "latest", "stable" or "backup"
13 , versionFlavor ? "stable"
15 let
16   versions = lib.importJSON ./versions.json;
17   flavor = with lib; head (filter (x: x.version == versionFlavor) versions);
18   fetchBinary = runtimeId: fetchurl {
19     url = flavor.files.${runtimeId}.url;
20     sha256 = flavor.files.${runtimeId}.sha;
21   };
22   sources = {
23     "x86_64-linux" = fetchBinary "linux-x64";
24     "x86_64-darwin" = fetchBinary "osx-x64";
25   };
27 stdenv.mkDerivation {
28   pname = "StaticSitesClient-${versionFlavor}";
29   version = flavor.buildId;
31   src = sources.${stdenv.hostPlatform.system} or (throw "Unsupported system: ${stdenv.hostPlatform.system}");
33   nativeBuildInputs = [
34     autoPatchelfHook
35   ];
37   buildInputs = [
38     curl
39     icu70
40     libkrb5
41     lttng-ust
42     openssl
43     stdenv.cc.cc.lib
44     zlib
45   ];
47   dontUnpack = true;
48   dontBuild = true;
50   installPhase = ''
51     runHook preInstall
53     install -m755 "$src" -D "$out/bin/StaticSitesClient"
55     for icu_lib in 'icui18n' 'icuuc' 'icudata'; do
56       patchelf --add-needed "lib''${icu_lib}.so.${with lib; head (splitVersion (getVersion icu70.name))}" "$out/bin/StaticSitesClient"
57     done
59     patchelf --add-needed 'libgssapi_krb5.so' \
60              --add-needed 'liblttng-ust.so'   \
61              --add-needed 'libssl.so.3'     \
62              "$out/bin/StaticSitesClient"
64     runHook postInstall
65   '';
67   # Stripping kills the binary
68   dontStrip = true;
70   # Just make sure the binary executes successfully
71   doInstallCheck = true;
72   installCheckPhase = ''
73     runHook preInstallCheck
75     $out/bin/StaticSitesClient version
77     runHook postInstallCheck
78   '';
80   passthru = {
81     # Create tests for all flavors
82     tests = with lib; genAttrs (map (x: x.version) versions) (versionFlavor:
83       azure-static-sites-client.override { inherit versionFlavor; }
84     );
85     updateScript = ./update.sh;
86   };
88   meta = with lib; {
89     description = "Azure static sites client";
90     homepage = "https://github.com/Azure/static-web-apps-cli";
91     sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
92     license = licenses.unfree;
93     mainProgram = "StaticSitesClient";
94     maintainers = with maintainers; [ veehaitch ];
95     platforms = [ "x86_64-linux" ];
96   };