Skip to content

Instantly share code, notes, and snippets.

@carlossless
Created October 14, 2025 08:50
Show Gist options
  • Save carlossless/56026f1c311eac21a63e3707025971ce to your computer and use it in GitHub Desktop.
Save carlossless/56026f1c311eac21a63e3707025971ce to your computer and use it in GitHub Desktop.
{
lib,
stdenv,
fetchFromGitHub,
xcbuildHook,
}:
stdenv.mkDerivation rec {
pname = "nuage";
version = "0.0.9";
src = fetchFromGitHub {
owner = "lbrndnr";
repo = "nuage-macos";
tag = "v${version}";
hash = "sha256-om87J+3zhXlOY+tBnW0K0OjpliKtJ+xTo2WP4rCKNAI=";
fetchSubmodules = true;
};
nativeBuildInputs = [
xcbuildHook
];
meta = {
description = "Native SoundCloud app for macOS, written in SwiftUI";
homepage = "https://github.com/lbrndnr/nuage-macos";
license = lib.licenses.gpl3;
maintainers = with lib.maintainers; [ carlossless ];
platforms = lib.platforms.darwin;
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment