about summary refs log tree commit diff
path: root/pkgs/by-name/xl/xld/package.nix
blob: bd27f6511b89f870a80e3c159df67d2d9524c514 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{ lib
, stdenvNoCC
, fetchurl
, undmg
, writeShellApplication
, curl
, xmlstarlet
, common-updater-scripts
}:

stdenvNoCC.mkDerivation (finalAttrs: {
  pname = "xld";
  version = "20240511";

  src = fetchurl {
    url = "mirror://sourceforge/${finalAttrs.pname}/${finalAttrs.pname}-${finalAttrs.version}.dmg";
    hash = "sha256-8xfjAWgtSdbD8gGlkGzT8QRz7egIf4PE/rFsFEDX0+c=";
  };

  buildInputs = [ undmg ];

  sourceRoot = ".";

  installPhase = ''
  runHook preInstall

  mkdir -p "$out/Applications" "$out/bin"
  cp -r *.app "$out/Applications"
  cp -r CLI/xld "$out/bin"

  runHook postInstall
  '';

  postPatch = ''
    substituteInPlace CLI/xld \
    --replace "/Applications/XLD.app" "$out/Applications/XLD.app"
  '';

  passthru.updateScript = lib.getExe (writeShellApplication {
    name = "xld-update-script";
    runtimeInputs = [
      curl
      xmlstarlet
      common-updater-scripts
    ];
    text = ''
      url=$(curl --silent "https://svn.code.sf.net/p/xld/code/appcast/xld-appcast_e.xml")
      version=$(echo "$url" | xmlstarlet sel -t -v "substring-before(substring-after(//enclosure/@url, 'version='), '&')")
      update-source-version xld "$version" --file=./pkgs/by-name/xl/xld/package.nix
    '';
  });

  meta = {
    description = "Lossless audio decoder";
    homepage = "https://tmkk.undo.jp/xld/index_e.html";
    license = lib.licenses.osl3;
    maintainers = with lib.maintainers; [ iivusly ];
    platforms = lib.platforms.darwin;
    sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
    mainProgram = "xld";
  };
})