2014-12-22 06:49:34 +00:00
|
|
|
{ stdenv, fetchurl, cmake }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2016-12-19 22:15:57 +00:00
|
|
|
version = "0.6.1";
|
2014-12-22 06:49:34 +00:00
|
|
|
name = "game-music-emu-${version}";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2016-12-19 22:15:57 +00:00
|
|
|
url = "https://bitbucket.org/mpyne/game-music-emu/downloads/${name}.tar.bz2";
|
|
|
|
sha256 = "08fk7zddpn7v93d0fa7fcypx7hvgwx9b5psj9l6m8b87k2hbw4fw";
|
2014-12-22 06:49:34 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ cmake ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2017-08-22 19:50:04 +01:00
|
|
|
homepage = https://bitbucket.org/mpyne/game-music-emu/wiki/Home;
|
2014-12-22 06:49:34 +00:00
|
|
|
description = "A collection of video game music file emulators";
|
|
|
|
license = licenses.lgpl21Plus;
|
|
|
|
platforms = platforms.all;
|
|
|
|
maintainers = [ ];
|
|
|
|
};
|
|
|
|
}
|