mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
quadrafuzz: init at 0.1.1
This commit is contained in:
parent
ab51a2dbd6
commit
7547550525
2 changed files with 45 additions and 0 deletions
43
pkgs/applications/audio/quadrafuzz/default.nix
Normal file
43
pkgs/applications/audio/quadrafuzz/default.nix
Normal file
|
@ -0,0 +1,43 @@
|
|||
{ stdenv, lib, fetchFromGitHub, boost, cairo, lv2, pkg-config }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "quadrafuzz";
|
||||
version = "0.1.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "jpcima";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "1kjsf7il9krihwlrq08gk2xvil4b4q5zd87nnm103hby2w7ws7z1";
|
||||
fetchSubmodules = true;
|
||||
};
|
||||
|
||||
postPatch = ''
|
||||
patchShebangs ./dpf/utils/generate-ttl.sh
|
||||
'';
|
||||
|
||||
nativeBuildInputs = [ pkg-config ];
|
||||
|
||||
buildInputs = [
|
||||
boost cairo lv2
|
||||
];
|
||||
|
||||
makeFlags = [
|
||||
"PREFIX=$(out)"
|
||||
];
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
mkdir -p $out/lib/lv2
|
||||
cp -r bin/quadrafuzz.lv2/ $out/lib/lv2
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/jpcima/quadrafuzz";
|
||||
description = "Multi-band fuzz distortion plugin";
|
||||
maintainers = [ maintainers.magnetophon ];
|
||||
platforms = platforms.linux;
|
||||
license = licenses.gpl3Plus;
|
||||
};
|
||||
}
|
|
@ -8033,6 +8033,8 @@ in
|
|||
|
||||
qtikz = libsForQt5.callPackage ../applications/graphics/ktikz { };
|
||||
|
||||
quadrafuzz = callPackage ../applications/audio/quadrafuzz { };
|
||||
|
||||
quickfix = callPackage ../development/libraries/quickfix { };
|
||||
|
||||
quickjs = callPackage ../development/interpreters/quickjs { };
|
||||
|
|
Loading…
Reference in a new issue