about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/audio/game-music-emu/default.nix
blob: a0a79785283c0d0916d5bba75380964bc1794b2b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ stdenv, fetchurl, cmake }:

stdenv.mkDerivation rec {
  version = "0.6.1";
  name = "game-music-emu-${version}";

  src = fetchurl {
    url = "https://bitbucket.org/mpyne/game-music-emu/downloads/${name}.tar.bz2";
    sha256 = "08fk7zddpn7v93d0fa7fcypx7hvgwx9b5psj9l6m8b87k2hbw4fw";
  };

  buildInputs = [ cmake ];

  meta = with stdenv.lib; {
    homepage = https://bitbucket.org/mpyne/game-music-emu/wiki/Home;
    description = "A collection of video game music file emulators";
    license = licenses.lgpl21Plus;
    platforms = platforms.all;
    maintainers = [ ];
  };
}