{ lib , stdenv , fetchFromGitHub , cmake }: stdenv.mkDerivation rec { pname = "clap"; version = "1.1.10"; src = fetchFromGitHub { owner = "free-audio"; repo = "clap"; rev = version; hash = "sha256-AH3kSCp4Q8Nw3To2vuPuMH/cWm3cmzj2OEH/Azcbdmo="; }; postPatch = '' substituteInPlace clap.pc.in \ --replace '$'"{prefix}/@CMAKE_INSTALL_INCLUDEDIR@" '@CMAKE_INSTALL_FULL_INCLUDEDIR@' ''; nativeBuildInputs = [ cmake ]; meta = with lib; { description = "Clever Audio Plugin API interface headers"; homepage = "https://cleveraudio.org/"; license = licenses.mit; platforms = platforms.all; maintainers = with maintainers; [ ris ]; }; }