summary refs log tree commit diff
path: root/pkgs/tools/audio
diff options
context:
space:
mode:
authorgnidorah <gnidorah@users.noreply.github.com>2020-08-06 10:01:18 +0300
committergnidorah <gnidorah@users.noreply.github.com>2020-08-06 10:01:18 +0300
commit1ace84441511d92b3acd40ab58494d124131bfe7 (patch)
tree0f18ea266a683f4921564bc728a692f3bc2a7d80 /pkgs/tools/audio
parent059675cd0de0616e42081d85a972da0f09b676cd (diff)
downloadnixpkgs-1ace84441511d92b3acd40ab58494d124131bfe7.tar
nixpkgs-1ace84441511d92b3acd40ab58494d124131bfe7.tar.gz
nixpkgs-1ace84441511d92b3acd40ab58494d124131bfe7.tar.bz2
nixpkgs-1ace84441511d92b3acd40ab58494d124131bfe7.tar.lz
nixpkgs-1ace84441511d92b3acd40ab58494d124131bfe7.tar.xz
nixpkgs-1ace84441511d92b3acd40ab58494d124131bfe7.tar.zst
nixpkgs-1ace84441511d92b3acd40ab58494d124131bfe7.zip
opn2bankeditor: 1.3-beta -> 1.3
Diffstat (limited to 'pkgs/tools/audio')
-rw-r--r--pkgs/tools/audio/opl3bankeditor/opn2bankeditor.nix11
1 files changed, 3 insertions, 8 deletions
diff --git a/pkgs/tools/audio/opl3bankeditor/opn2bankeditor.nix b/pkgs/tools/audio/opl3bankeditor/opn2bankeditor.nix
index d8f15a65b45..1d10452470e 100644
--- a/pkgs/tools/audio/opl3bankeditor/opn2bankeditor.nix
+++ b/pkgs/tools/audio/opl3bankeditor/opn2bankeditor.nix
@@ -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
-  '';
 })