mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 20:03:16 +00:00
mamba: init at 1.3 (#94615)
* mamba: init at 1.1 * mamba: 1.1 -> 1.3 Co-authored-by: Orivej Desh <orivej@gmx.fr>
This commit is contained in:
commit
c8003b550a
40
pkgs/applications/audio/mamba/default.nix
Normal file
40
pkgs/applications/audio/mamba/default.nix
Normal file
@ -0,0 +1,40 @@
|
|||||||
|
{ stdenv
|
||||||
|
, fetchFromGitHub
|
||||||
|
, pkgconfig
|
||||||
|
, cairo
|
||||||
|
, libX11
|
||||||
|
, libjack2
|
||||||
|
, liblo
|
||||||
|
, libsigcxx
|
||||||
|
, libsmf
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "mamba";
|
||||||
|
version = "1.3";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "brummer10";
|
||||||
|
repo = "Mamba";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "1wa3f9c4l239mpxa7nxx8hajy4icn40vpvaxq5l1qzskl74w072d";
|
||||||
|
fetchSubmodules = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
patches = [ ./fix-build.patch ];
|
||||||
|
|
||||||
|
nativeBuildInputs = [ pkgconfig ];
|
||||||
|
buildInputs = [ cairo libX11 libjack2 liblo libsigcxx libsmf ];
|
||||||
|
|
||||||
|
makeFlags = [ "PREFIX=$(out)" ];
|
||||||
|
|
||||||
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = "https://github.com/brummer10/Mamba";
|
||||||
|
description = "Virtual MIDI keyboard for Jack Audio Connection Kit";
|
||||||
|
license = licenses.bsd0;
|
||||||
|
maintainers = with maintainers; [ magnetophon orivej ];
|
||||||
|
platforms = platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
10
pkgs/applications/audio/mamba/fix-build.patch
Normal file
10
pkgs/applications/audio/mamba/fix-build.patch
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
--- a/libxputty/Build/Makefile
|
||||||
|
+++ b/libxputty/Build/Makefile
|
||||||
|
@@ -20,1 +20,1 @@
|
||||||
|
- LDFLAGS += -fPIC `pkg-config --static --cflags --libs cairo x11` -lm
|
||||||
|
+ LDFLAGS += -fPIC `pkg-config --cflags --libs cairo x11` -lm
|
||||||
|
--- a/src/Makefile
|
||||||
|
+++ b/src/Makefile
|
||||||
|
@@ -84,1 +83,1 @@ ifneq ("$(wildcard ./$(BUILD_DIR))","")
|
||||||
|
- update-desktop-database
|
||||||
|
+ update-desktop-database || true
|
@ -26377,6 +26377,8 @@ in
|
|||||||
icu = icu58;
|
icu = icu58;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
mamba = callPackage ../applications/audio/mamba{ };
|
||||||
|
|
||||||
mame = libsForQt5.callPackage ../misc/emulators/mame {
|
mame = libsForQt5.callPackage ../misc/emulators/mame {
|
||||||
inherit (darwin.apple_sdk.frameworks) CoreAudioKit ForceFeedback;
|
inherit (darwin.apple_sdk.frameworks) CoreAudioKit ForceFeedback;
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user