nixpkgs/pkgs/tools/audio/opl3bankeditor/opn2bankeditor.nix
2019-02-10 22:57:16 +03:00

20 lines
474 B
Nix

{ 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
'';
})