mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-22 21:53:32 +00:00
591ccfe5b9
This continues whered8f7f6a5ce
left off. Similarly to that commit, this commit this also points `sourceRoot`s to `src.name` and similar instead of keeping hardcoded names, and edits other derivation attrs do do the same, where appropriate. Also, similarly tod8f7f6a5ce
some of expressions this edits use `srcs` attribute with customly-named sources, so they have to be moved into `let` blocks to keep evaluation efficient (the other, worse, way to do this would to recurcively refer to `elemAt n finalAttrs.srcs` or, similarly, with `rec`).
52 lines
1.5 KiB
Nix
52 lines
1.5 KiB
Nix
{ lib, stdenv, fetchFromGitHub, cmake, pkg-config, bluez, dbus, glew, glfw, imgui, makeDesktopItem, copyDesktopItems }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "SonyHeadphonesClient";
|
|
version = "1.3.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Plutoberth";
|
|
repo = "SonyHeadphonesClient";
|
|
rev = "v${version}";
|
|
hash = "sha256-vhI97KheKzr87exCh4xNN7NDefcagdMu1tWSt67vLiU=";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake pkg-config copyDesktopItems ];
|
|
buildInputs = [ bluez dbus glew glfw imgui ];
|
|
|
|
sourceRoot = "./${src.name}/Client";
|
|
|
|
cmakeFlags = [ "-Wno-dev" ];
|
|
|
|
postPatch = ''
|
|
substituteInPlace Constants.h \
|
|
--replace "UNKNOWN = -1" "// UNKNOWN removed since it doesn't fit in char"
|
|
'';
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
install -Dm755 -t $out/bin SonyHeadphonesClient
|
|
runHook postInstall
|
|
'';
|
|
|
|
desktopItems = [
|
|
(makeDesktopItem {
|
|
name = "SonyHeadphonesClient";
|
|
exec = "SonyHeadphonesClient";
|
|
icon = "SonyHeadphonesClient";
|
|
desktopName = "Sony Headphones Client";
|
|
comment = "A client recreating the functionality of the Sony Headphones app";
|
|
categories = [ "Audio" "Mixer" ];
|
|
})
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "A client recreating the functionality of the Sony Headphones app";
|
|
homepage = "https://github.com/Plutoberth/SonyHeadphonesClient";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ stunkymonkey ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|