2021-06-10 04:57:09 +02:00
|
|
|
{ lib, mkDerivation, fetchFromGitHub, cmake, qttools, alsa-lib }:
|
2019-02-10 20:57:16 +01:00
|
|
|
|
2019-08-13 06:31:05 +02:00
|
|
|
mkDerivation rec {
|
2020-08-06 08:53:07 +02:00
|
|
|
version = "1.5.1";
|
2019-02-10 20:57:16 +01:00
|
|
|
pname = "OPL3BankEditor";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Wohlstand";
|
|
|
|
repo = pname;
|
2019-03-20 18:09:39 +01:00
|
|
|
rev = "v${version}";
|
2020-08-06 08:53:07 +02:00
|
|
|
sha256 = "1g59qrkcm4xnyxx0s2x28brqbf2ix6vriyx12pcdvfhhcdi55hxh";
|
2019-02-10 20:57:16 +01:00
|
|
|
fetchSubmodules = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [
|
2021-06-10 04:57:09 +02:00
|
|
|
alsa-lib qttools
|
2019-02-10 20:57:16 +01:00
|
|
|
];
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2019-02-10 20:57:16 +01:00
|
|
|
description = "A small cross-platform editor of the OPL3 FM banks of different formats";
|
|
|
|
homepage = src.meta.homepage;
|
|
|
|
license = licenses.gpl3;
|
|
|
|
platforms = platforms.linux;
|
2021-04-29 07:21:13 +02:00
|
|
|
maintainers = with maintainers; [ ];
|
2019-02-10 20:57:16 +01:00
|
|
|
};
|
|
|
|
}
|