nixpkgs/pkgs/applications/audio/helio-workstation/default.nix

50 lines
1.3 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub
2019-07-21 19:23:38 +00:00
, alsaLib, freetype, xorg, curl, libGL, libjack2, gnome3
, pkgconfig, makeWrapper
}:
stdenv.mkDerivation rec {
pname = "helio-workstation";
2020-12-26 11:07:33 +00:00
version = "3.3";
2019-07-21 19:23:38 +00:00
src = fetchFromGitHub {
owner = "helio-fm";
repo = pname;
rev = version;
fetchSubmodules = true;
2020-12-26 11:07:33 +00:00
sha256 = "sha256-meeNqV1jKUwWc7P3p/LicPsbpzpKKFmQ1wP9DuXc9NY=";
2019-07-21 19:23:38 +00:00
};
buildInputs = [
alsaLib freetype xorg.libX11 xorg.libXext xorg.libXinerama xorg.libXrandr
xorg.libXcursor xorg.libXcomposite curl libGL libjack2 gnome3.zenity
];
nativeBuildInputs = [ pkgconfig makeWrapper ];
2020-08-08 17:28:07 +00:00
preBuild = ''
cd Projects/LinuxMakefile
substituteInPlace Makefile --replace alsa "alsa jack"
'';
2019-07-21 19:23:38 +00:00
buildFlags = [ "CONFIG=Release64" ];
installPhase = ''
mkdir -p $out/bin
install -Dm755 build/Helio $out/bin
wrapProgram $out/bin/Helio --prefix PATH ":" ${gnome3.zenity}/bin
mkdir -p $out/share
cp -r ../Deployment/Linux/Debian/x64/usr/share/* $out/share
substituteInPlace $out/share/applications/Helio.desktop \
--replace "/usr/bin/helio" "$out/bin/Helio"
'';
meta = with lib; {
2019-07-21 19:23:38 +00:00
description = "One music sequencer for all major platforms, both desktop and mobile";
homepage = "https://helio.fm/";
2020-12-26 11:07:33 +00:00
license = licenses.gpl3Only;
2019-07-21 19:23:38 +00:00
maintainers = [ maintainers.suhr ];
platforms = [ "x86_64-linux" ];
};
}