mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 19:21:04 +00:00
63 lines
1.5 KiB
Nix
63 lines
1.5 KiB
Nix
{ lib
|
|
, stdenvNoCC
|
|
, fetchurl
|
|
, undmg
|
|
, writeShellApplication
|
|
, curl
|
|
, xmlstarlet
|
|
, common-updater-scripts
|
|
}:
|
|
|
|
stdenvNoCC.mkDerivation (finalAttrs: {
|
|
pname = "xld";
|
|
version = "20240511";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/xld/xld-${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";
|
|
};
|
|
})
|