nixpkgs/pkgs/applications/audio/game-music-emu/default.nix

22 lines
614 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, cmake }:
stdenv.mkDerivation rec {
2020-06-08 11:07:37 +00:00
version = "0.6.3";
pname = "game-music-emu";
src = fetchurl {
2020-06-08 11:07:37 +00:00
url = "https://bitbucket.org/mpyne/game-music-emu/downloads/${pname}-${version}.tar.xz";
sha256 = "07857vdkak306d9s5g6fhmjyxk7vijzjhkmqb15s7ihfxx9lx8xb";
};
nativeBuildInputs = [ cmake ];
meta = with 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;
2020-06-08 11:07:37 +00:00
maintainers = with maintainers; [ luc65r ];
};
}