mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
Add setBfree a DSP tonewheel organ emulator
This commit is contained in:
parent
d2587a014f
commit
7c2c5987d1
2 changed files with 25 additions and 0 deletions
23
pkgs/applications/audio/setbfree/default.nix
Normal file
23
pkgs/applications/audio/setbfree/default.nix
Normal file
|
@ -0,0 +1,23 @@
|
|||
{ stdenv, fetchurl, alsaLib, jackaudio, lv2, pkgconfig }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "setbfree-${version}";
|
||||
version = "0.7.5";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/pantherb/setBfree/archive/v${version}.tar.gz";
|
||||
sha256 = "1chlmgwricc6l4kyg35vc9v8f1n8psr28iihn4a9q2prj1ihqcbc";
|
||||
};
|
||||
|
||||
patchPhase = "sed 's#/usr/local#$(out)#g' -i common.mak";
|
||||
|
||||
buildInputs = [ alsaLib jackaudio lv2 pkgconfig ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "A DSP tonewheel organ emulator";
|
||||
homepage = http://setbfree.org;
|
||||
license = licenses.gpl2;
|
||||
platforms = platforms.linux;
|
||||
maintainers = [ maintainers.goibhniu ];
|
||||
};
|
||||
}
|
|
@ -9139,6 +9139,8 @@ let
|
|||
|
||||
seq24 = callPackage ../applications/audio/seq24 { };
|
||||
|
||||
setbfree = callPackage ../applications/audio/setbfree { };
|
||||
|
||||
sflphone = callPackage ../applications/networking/instant-messengers/sflphone {
|
||||
gtk = gtk3;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue