mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-01 19:33:03 +00:00
442b2e8c35
Cairo will soon no longer propagate libGL. The DPF submodule needs this: src/pugl/pugl.h:39:14: fatal error: GL/gl.h: No such file or directory 39 | # include <GL/gl.h> | ^~~~~~~~~ compilation terminated. (See also the fix for string-machine, which has the same build issue)
36 lines
961 B
Nix
36 lines
961 B
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
|
|
'';
|
|
|
|
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;
|
|
};
|
|
}
|