about summary refs log tree commit diff
path: root/pkgs/tools/audio/opl3bankeditor/opn2bankeditor.nix
blob: b79dfeb12d80e47f45a4be274192d2dd5046c16c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ stdenv, opl3bankeditor, fetchFromGitHub, fetchpatch }:

opl3bankeditor.overrideAttrs (oldAttrs: rec {
  version = "1.3-beta";
  pname = "OPN2BankEditor";

  src = fetchFromGitHub {
    owner = "Wohlstand";
    repo = pname;
    rev = version;
    sha256 = "0blcvqfj1yj6cmm079aw4jdzv3066jxqy9krp268i6cl2b3bmwvw";
    fetchSubmodules = true;
  };

  # to be removed with next release
  postInstall = ''
    install -Dm755 opn2_bank_editor $out/bin/opn2_bank_editor
  '';
})