game-music-emu: 0.6.1 -> 0.6.3

This commit is contained in:
luc65r 2020-06-08 13:07:37 +02:00 committed by Frederik Rietdijk
parent 9544382a41
commit 2fba99c47c

View File

@ -1,12 +1,12 @@
{ stdenv, fetchurl, cmake }:
stdenv.mkDerivation rec {
version = "0.6.1";
version = "0.6.3";
pname = "game-music-emu";
src = fetchurl {
url = "https://bitbucket.org/mpyne/game-music-emu/downloads/${pname}-${version}.tar.bz2";
sha256 = "08fk7zddpn7v93d0fa7fcypx7hvgwx9b5psj9l6m8b87k2hbw4fw";
url = "https://bitbucket.org/mpyne/game-music-emu/downloads/${pname}-${version}.tar.xz";
sha256 = "07857vdkak306d9s5g6fhmjyxk7vijzjhkmqb15s7ihfxx9lx8xb";
};
buildInputs = [ cmake ];
@ -16,6 +16,6 @@ stdenv.mkDerivation rec {
description = "A collection of video game music file emulators";
license = licenses.lgpl21Plus;
platforms = platforms.all;
maintainers = [ ];
maintainers = with maintainers; [ luc65r ];
};
}