mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
5356420466
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \ -e 's!with lib.maintainers; \[ *\];![ ];!' \ -e 's!with maintainers; \[ *\];![ ];!'
109 lines
2.1 KiB
Nix
109 lines
2.1 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchurl
|
|
, makeWrapper
|
|
, autoPatchelfHook
|
|
, dpkg
|
|
, alsa-lib
|
|
, curl
|
|
, avahi
|
|
, jack2
|
|
, libxcb
|
|
, libX11
|
|
, libXcursor
|
|
, libXext
|
|
, libXi
|
|
, libXinerama
|
|
, libXrandr
|
|
, libXrender
|
|
, libXxf86vm
|
|
, libglvnd
|
|
, zenity
|
|
}:
|
|
|
|
let
|
|
runLibDeps = [
|
|
curl
|
|
avahi
|
|
jack2
|
|
libxcb
|
|
libX11
|
|
libXcursor
|
|
libXext
|
|
libXi
|
|
libXinerama
|
|
libXrandr
|
|
libXrender
|
|
libXxf86vm
|
|
libglvnd
|
|
];
|
|
|
|
runBinDeps = [
|
|
zenity
|
|
];
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "touchosc";
|
|
version = "1.3.4.209";
|
|
|
|
suffix = {
|
|
aarch64-linux = "linux-arm64";
|
|
armv7l-linux = "linux-armhf";
|
|
x86_64-linux = "linux-x64";
|
|
}.${stdenv.hostPlatform.system} or (throw "Unsupported system: ${stdenv.hostPlatform.system}");
|
|
|
|
src = fetchurl {
|
|
url = "https://hexler.net/pub/${pname}/${pname}-${version}-${suffix}.deb";
|
|
hash = {
|
|
aarch64-linux = "sha256-dAyZ/x6ZUYst+3Hz8RL4+FW1oeb+652Zndpqp0JnGgs=";
|
|
armv7l-linux = "sha256-ub+qcWrpv+LiXbEq6YQczJN1E4c2i/ZtKbh5e2PMuH0=";
|
|
x86_64-linux = "sha256-c8hPbJo4MUqS0Ev5QzLujJJB3hqN3KMsLVdKb6MKNts=";
|
|
}.${stdenv.hostPlatform.system} or (throw "Unsupported system: ${stdenv.hostPlatform.system}");
|
|
};
|
|
|
|
strictDeps = true;
|
|
|
|
nativeBuildInputs = [
|
|
makeWrapper
|
|
autoPatchelfHook
|
|
dpkg
|
|
];
|
|
|
|
buildInputs = [
|
|
stdenv.cc.cc.lib
|
|
alsa-lib
|
|
];
|
|
|
|
dontConfigure = true;
|
|
dontBuild = true;
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir -p $out
|
|
cp -r usr/share $out/share
|
|
|
|
mkdir -p $out/bin
|
|
cp opt/touchosc/TouchOSC $out/bin/TouchOSC
|
|
|
|
wrapProgram $out/bin/TouchOSC \
|
|
--prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath runLibDeps} \
|
|
--prefix PATH : ${lib.makeBinPath runBinDeps}
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
passthru.updateScript = ./update.sh;
|
|
|
|
meta = with lib; {
|
|
homepage = "https://hexler.net/touchosc";
|
|
description = "Next generation modular control surface";
|
|
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
|
|
license = licenses.unfree;
|
|
maintainers = [ ];
|
|
platforms = [ "aarch64-linux" "armv7l-linux" "x86_64-linux" ];
|
|
mainProgram = "TouchOSC";
|
|
};
|
|
}
|