summary refs log tree commit diff
path: root/pkgs/tools/audio/opl3bankeditor/default.nix
blob: 13f8dde680dd874af3cfd2087f5c54b95d02800c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ lib, mkDerivation, fetchFromGitHub, cmake, qttools, alsa-lib }:

mkDerivation rec {
  version = "1.5.1";
  pname = "OPL3BankEditor";

  src = fetchFromGitHub {
    owner = "Wohlstand";
    repo = pname;
    rev = "v${version}";
    sha256 = "1g59qrkcm4xnyxx0s2x28brqbf2ix6vriyx12pcdvfhhcdi55hxh";
    fetchSubmodules = true;
  };

  buildInputs = [
    alsa-lib qttools
  ];
  nativeBuildInputs = [ cmake ];

  meta = with lib; {
    description = "A small cross-platform editor of the OPL3 FM banks of different formats";
    homepage = src.meta.homepage;
    license = licenses.gpl3;
    platforms = platforms.linux;
    maintainers = with maintainers; [ ];
  };
}