nixpkgs/pkgs/applications/audio/game-music-emu/default.nix
Graham Christensen 2c24ce5cfa
game-music-emu: 0.6.0 -> 0.6.1 for multiple CVEs
CVE-2016-9957 CVE-2016-9958 CVE-2016-9959 CVE-2016-9960 CVE-2016-9961
2016-12-21 14:37:45 -05:00

22 lines
571 B
Nix

{ 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://code.google.com/p/game-music-emu/;
description = "A collection of video game music file emulators";
license = licenses.lgpl21Plus;
platforms = platforms.all;
maintainers = [ ];
};
}