mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
soundwireserver: init at 3.0
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
parent
9e06375eb2
commit
bc8d1dfa83
39
pkgs/applications/audio/soundwireserver/default.nix
Executable file
39
pkgs/applications/audio/soundwireserver/default.nix
Executable file
@ -0,0 +1,39 @@
|
||||
{ lib
|
||||
, qt5
|
||||
, autoPatchelfHook
|
||||
, unzip
|
||||
, fetchzip
|
||||
, portaudio
|
||||
}:
|
||||
|
||||
qt5.mkDerivation {
|
||||
pname = "soundwire";
|
||||
version = "3.0";
|
||||
|
||||
src = fetchzip {
|
||||
url = "https://web.archive.org/web/20211120182526/https://georgielabs.net/SoundWire_Server_linux64.tar.gz";
|
||||
hash = "sha256-TECuQ5WXpeikc9tXEE/wVBnRbdYd0OaIFFhsBRmaukA=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
unzip
|
||||
autoPatchelfHook
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
portaudio
|
||||
];
|
||||
|
||||
installPhase = ''
|
||||
install -D SoundWire-Server.desktop $out/share/applications/SoundWireServer.desktop
|
||||
install -D SoundWireServer $out/bin/SoundWireServer
|
||||
install -D sw-icon.xpm $out/share/icons/hicolor/256x256/apps/sw-icon.xpm
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Turn your Android device into wireless headphones / wireless speaker";
|
||||
homepage = "https://georgielabs.net/";
|
||||
maintainers = with maintainers; [ mkg20001 ];
|
||||
license = licenses.unfree;
|
||||
};
|
||||
}
|
@ -9591,6 +9591,8 @@ with pkgs;
|
||||
|
||||
soundkonverter = libsForQt5.soundkonverter;
|
||||
|
||||
soundwireserver = callPackage ../applications/audio/soundwireserver { };
|
||||
|
||||
sozu = callPackage ../servers/sozu { };
|
||||
|
||||
sparsehash = callPackage ../development/libraries/sparsehash { };
|
||||
|
Loading…
Reference in New Issue
Block a user