about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/audio/libgme/default.nix
blob: ac6f0470a0a8c1da5ac87c9ecbc83f49dfa59610 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ stdenv, fetchFromBitbucket, cmake }:
let
  version = "0.6.2";
in stdenv.mkDerivation {
  name = "libgme-${version}";

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

  src = fetchFromBitbucket {
    owner = "mpyne";
    repo = "game-music-emu";
    rev = version;
    sha256 = "00vlbfk5h99dq5rbwxk20dv72dig6wdwpgf83q451avsscky0jvk";
  };

  buildInputs = [ cmake ];
}