mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-26 07:34:11 +00:00
35 lines
805 B
Nix
35 lines
805 B
Nix
|
{ lib, stdenv, fetchFromGitHub, pkg-config, lv2 }:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
pname = "midi-trigger";
|
||
|
version = "0.0.4";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "unclechu";
|
||
|
repo = "MIDI-Trigger";
|
||
|
rev = "v${version}";
|
||
|
sha256 = "sha256-tMnN8mTd6Bm46ZIDy0JPSVe77xCZws2XwQLQexDWPgU=";
|
||
|
};
|
||
|
|
||
|
nativeBuildInputs = [ pkg-config ];
|
||
|
buildInputs = [ lv2 ];
|
||
|
|
||
|
makeFlags = [
|
||
|
"CXX=cc"
|
||
|
"BUILD_DIR=."
|
||
|
];
|
||
|
|
||
|
installPhase = ''
|
||
|
mkdir -p "$out/lib/lv2"
|
||
|
mv midi-trigger.lv2 "$out/lib/lv2"
|
||
|
'';
|
||
|
|
||
|
meta = with lib; {
|
||
|
homepage = "https://github.com/unclechu/MIDI-Trigger";
|
||
|
description = "LV2 plugin which generates MIDI notes by detected audio signal peaks";
|
||
|
maintainers = with maintainers; [ unclechu ];
|
||
|
license = licenses.gpl3Only;
|
||
|
platforms = platforms.unix;
|
||
|
};
|
||
|
}
|