nixpkgs-suyu/pkgs/applications/audio/bchoppr/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
724 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, pkg-config, cairo, libX11, lv2 }:
2020-08-17 18:15:14 +02:00
stdenv.mkDerivation rec {
pname = "bchoppr";
2023-09-01 02:54:32 +02:00
version = "1.12.6";
2020-08-17 18:15:14 +02:00
src = fetchFromGitHub {
owner = "sjaehn";
repo = pname;
rev = version;
2023-09-01 02:54:32 +02:00
sha256 = "sha256-/aLoLUpWu66VKd9lwjli+FZZctblrZUPSEsdYH85HwQ=";
fetchSubmodules = true;
2020-08-17 18:15:14 +02:00
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [ cairo libX11 lv2 ];
installFlags = [ "PREFIX=$(out)" ];
enableParallelBuilding = true;
meta = with lib; {
2021-01-18 11:47:53 +01:00
homepage = "https://github.com/sjaehn/BChoppr";
2020-08-17 18:15:14 +02:00
description = "An audio stream chopping LV2 plugin";
maintainers = [ maintainers.magnetophon ];
platforms = platforms.linux;
license = licenses.gpl3Plus;
};
}