Unverified Commit b26b54f0 authored by Orivej Desh's avatar Orivej Desh Committed by GitHub
Browse files

mamba: 1.8 -> 2.2 (#122193)

parent 7c46cfbc
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
{ lib, stdenv
, fetchFromGitHub
, pkg-config
, xxd
, cairo
, fluidsynth
, libX11
@@ -13,17 +14,17 @@

stdenv.mkDerivation rec {
  pname = "mamba";
  version = "1.8";
  version = "2.2";

  src = fetchFromGitHub {
    owner = "brummer10";
    repo = "Mamba";
    rev = "v${version}";
    sha256 = "049gvdvvv3hkh1b47h0bia02g1p71agwh6g7q0n4yxz4d81b8kha";
    sha256 = "1885qxyfkpslzk0aaaaws0x73b10h9nbr04jkk7xhkya25gf280m";
    fetchSubmodules = true;
  };

  nativeBuildInputs = [ pkg-config ];
  nativeBuildInputs = [ pkg-config xxd ];
  buildInputs = [ cairo fluidsynth libX11 libjack2 alsaLib liblo libsigcxx libsmf ];

  makeFlags = [ "PREFIX=$(out)" ];