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