opn2bankeditor: 1.3-beta -> 1.3

This commit is contained in:
gnidorah 2020-08-06 10:01:18 +03:00
parent 059675cd0d
commit 1ace844415

View file

@ -1,19 +1,14 @@
{ opl3bankeditor, fetchFromGitHub }:
opl3bankeditor.overrideAttrs (oldAttrs: rec {
version = "1.3-beta";
version = "1.3";
pname = "OPN2BankEditor";
src = fetchFromGitHub {
owner = "Wohlstand";
repo = pname;
rev = version;
sha256 = "0blcvqfj1yj6cmm079aw4jdzv3066jxqy9krp268i6cl2b3bmwvw";
rev = "v${version}";
sha256 = "0xsvv0gxqh1lx22f1jm384f7mq1jp57fmpsx1jjaxz435w5hf8s0";
fetchSubmodules = true;
};
# to be removed with next release
postInstall = ''
install -Dm755 opn2_bank_editor $out/bin/opn2_bank_editor
'';
})