56 lines
1.1 KiB
Nix
56 lines
1.1 KiB
Nix
{ stdenv
|
|
, lib
|
|
, fetchFromGitHub
|
|
, cmake
|
|
, flac
|
|
, libpulseaudio
|
|
, qtbase
|
|
, qtgraphicaleffects
|
|
, qtquickcontrols2
|
|
, wrapQtAppsHook
|
|
, makeWrapper
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "noson";
|
|
version = "5.6.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "janbar";
|
|
repo = "noson-app";
|
|
rev = finalAttrs.version;
|
|
hash = "sha256-lroQYO+Ab7uPQmsrUFK6uWdCoGQp1klyfLw6eAxdzjg=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
wrapQtAppsHook
|
|
makeWrapper
|
|
];
|
|
|
|
buildInputs = [
|
|
flac
|
|
libpulseaudio
|
|
qtbase
|
|
qtgraphicaleffects
|
|
qtquickcontrols2
|
|
];
|
|
|
|
# wrapQtAppsHook doesn't automatically find noson-gui
|
|
dontWrapQtApps = true;
|
|
|
|
preFixup = ''
|
|
wrapProgram "$out/bin/noson-app" --prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath [ libpulseaudio ]}
|
|
wrapQtApp "$out/lib/noson/noson-gui"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "SONOS controller for Linux (and macOS)";
|
|
homepage = "https://janbar.github.io/noson-app/";
|
|
mainProgram = "noson-app";
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
license = [ licenses.gpl3Only ];
|
|
maintainers = with maintainers; [ callahad ];
|
|
};
|
|
})
|