mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-03-08 01:24:09 +01:00
bvibratr: init at 1.0.0
This commit is contained in:
parent
6772930cf2
commit
0d48700f26
1 changed files with 43 additions and 0 deletions
43
pkgs/by-name/bv/bvibratr/package.nix
Normal file
43
pkgs/by-name/bv/bvibratr/package.nix
Normal file
|
|
@ -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;
|
||||
};
|
||||
})
|
||||
Loading…
Add table
Add a link
Reference in a new issue