mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 21:03:15 +00:00
8744f66ee5
Without the change build fails on `master` as https://hydra.nixos.org/build/247541110: In file included from ./ui/Cairo++.h:3, from ui/components/KnobSkin.hpp:2, from ui/components/KnobSkin.cpp:1: ./ui/Color.h:4:5: error: 'uint8_t' does not name a type 4 | uint8_t r, g, b, a; | ^~~~~~~
39 lines
1.1 KiB
Nix
39 lines
1.1 KiB
Nix
{ lib, stdenv, fetchFromGitHub, xorg, cairo, libGL, lv2, libjack2, mesa, pkg-config }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "stone-phaser";
|
|
version = "0.1.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jpcima";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "180b32z8h9zi8p0q55r1dzxfckamnngm52zjypjjvvy7qdj3mfcd";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [
|
|
xorg.libX11 cairo libGL lv2 libjack2 mesa
|
|
];
|
|
|
|
postPatch = ''
|
|
patch -d dpf -p 1 -i "$src/resources/patch/DPF-bypass.patch"
|
|
patchShebangs ./dpf/utils/generate-ttl.sh
|
|
|
|
# Fix gcc-13 build failure due to missing includes
|
|
sed -e '1i #include <cstdint>' -i plugins/stone-phaser/ui/Color.h
|
|
'';
|
|
|
|
installFlags = [ "PREFIX=$(out)" ];
|
|
|
|
meta = with lib; {
|
|
broken = (stdenv.isLinux && stdenv.isAarch64);
|
|
homepage = "https://github.com/jpcima/stone-phaser";
|
|
description = "A classic analog phaser effect, made with DPF and Faust";
|
|
maintainers = [ maintainers.magnetophon ];
|
|
platforms = platforms.linux;
|
|
license = licenses.boost;
|
|
};
|
|
}
|