From abe6f84302896434c871f868abdd93d02e02acaa Mon Sep 17 00:00:00 2001 From: Knarkzel <85593302+knarkzel@users.noreply.github.com> Date: Mon, 11 Sep 2023 21:11:39 +0200 Subject: [PATCH] headphones-toolbox: init at 0.0.3 --- .../by-name/he/headphones-toolbox/package.nix | 47 +++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 pkgs/by-name/he/headphones-toolbox/package.nix diff --git a/pkgs/by-name/he/headphones-toolbox/package.nix b/pkgs/by-name/he/headphones-toolbox/package.nix new file mode 100644 index 000000000000..d0f01961e6b6 --- /dev/null +++ b/pkgs/by-name/he/headphones-toolbox/package.nix @@ -0,0 +1,47 @@ +{ lib +, stdenv +, dpkg +, fetchurl +, autoPatchelfHook +, webkitgtk +}: + +stdenv.mkDerivation (finalAttrs: { + name = "headphones-toolbox"; + version = "0.0.3"; + + src = fetchurl { + url = "https://github.com/george-norton/headphones-toolbox/releases/download/headphones-toolbox-beta-v4r2/ploopy-headphones-toolbox_${finalAttrs.version}_amd64.deb"; + hash = "sha256-r+ybcD6koSIJ/6cck3RNXmf758sRnhS1Y4kaYCNbveA="; + }; + + nativeBuildInputs = [ + dpkg + autoPatchelfHook + ]; + + buildInputs = [ + webkitgtk + ]; + + installPhase = '' + runHook preInstall + + mkdir -p $out/bin + mv usr/bin $out + mv usr/lib $out + mv usr/share $out + + runHook postInstall + ''; + + meta = with lib; { + description = "A UI for configuring Ploopy Headphones"; + homepage = "https://github.com/george-norton/headphones-toolbox"; + maintainers = with maintainers; [ knarkzel nyanbinary ]; + license = licenses.gpl3Only; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + platforms = [ "x86_64-linux" ]; + mainProgram = "headphones-toolbox"; + }; +})