mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-16 06:47:09 +03:00
9bb3fccb5b
continuation of #109595 pkgconfig was aliased in 2018, however, it remained in all-packages.nix due to its wide usage. This cleans up the remaining references to pkgs.pkgsconfig and moves the entry to aliases.nix. python3Packages.pkgconfig remained unchanged because it's the canonical name of the upstream package on pypi.
50 lines
1.4 KiB
Nix
50 lines
1.4 KiB
Nix
{ lib, stdenv, fetchFromGitHub
|
|
, alsaLib, freetype, xorg, curl, libGL, libjack2, gnome3
|
|
, pkg-config, makeWrapper
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "helio-workstation";
|
|
version = "3.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "helio-fm";
|
|
repo = pname;
|
|
rev = version;
|
|
fetchSubmodules = true;
|
|
sha256 = "sha256-meeNqV1jKUwWc7P3p/LicPsbpzpKKFmQ1wP9DuXc9NY=";
|
|
};
|
|
|
|
buildInputs = [
|
|
alsaLib freetype xorg.libX11 xorg.libXext xorg.libXinerama xorg.libXrandr
|
|
xorg.libXcursor xorg.libXcomposite curl libGL libjack2 gnome3.zenity
|
|
];
|
|
|
|
nativeBuildInputs = [ pkg-config makeWrapper ];
|
|
|
|
preBuild = ''
|
|
cd Projects/LinuxMakefile
|
|
substituteInPlace Makefile --replace alsa "alsa jack"
|
|
'';
|
|
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; {
|
|
description = "One music sequencer for all major platforms, both desktop and mobile";
|
|
homepage = "https://helio.fm/";
|
|
license = licenses.gpl3Only;
|
|
maintainers = [ maintainers.suhr ];
|
|
platforms = [ "x86_64-linux" ];
|
|
};
|
|
}
|