From 0d48700f260f9276f6f08fffcbdbe425a23c3d6a Mon Sep 17 00:00:00 2001 From: Bart Brouns Date: Sun, 1 Mar 2026 16:31:58 +0100 Subject: [PATCH] bvibratr: init at 1.0.0 --- pkgs/by-name/bv/bvibratr/package.nix | 43 ++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 pkgs/by-name/bv/bvibratr/package.nix diff --git a/pkgs/by-name/bv/bvibratr/package.nix b/pkgs/by-name/bv/bvibratr/package.nix new file mode 100644 index 000000000000..03f52f51fcd1 --- /dev/null +++ b/pkgs/by-name/bv/bvibratr/package.nix @@ -0,0 +1,43 @@ +{ + stdenv, + lib, + fetchFromGitHub, + libx11, + cairo, + cpio, + lv2, + libsndfile, + pkg-config, +}: + +stdenv.mkDerivation (finalAttrs: { + pname = "bvibratr"; + version = "1.0.0"; + + src = fetchFromGitHub { + owner = "sjaehn"; + repo = "BVibratr"; + tag = "v${finalAttrs.version}"; + fetchSubmodules = true; + sha256 = "sha256-bm4RKyLPR5WL52wXJ8w4YUZ1t9WoqYAw5ApMASVmiAQ="; + }; + + nativeBuildInputs = [ pkg-config ]; + buildInputs = [ + libx11 + cairo + cpio + lv2 + libsndfile + ]; + + installFlags = [ "PREFIX=$(out)" ]; + + meta = { + homepage = "https://github.com/sjaehn/BVibratr"; + description = "Flavoured vibrato as an instrument LV2 plugin"; + maintainers = [ lib.maintainers.magnetophon ]; + platforms = lib.platforms.linux; + license = lib.licenses.gpl3Plus; + }; +})