1 { lib, stdenv, fetchFromGitHub, cmake, allegro, SDL2 }:
3 stdenv.mkDerivation rec {
7 nativeBuildInputs = [ cmake ];
8 buildInputs = [ allegro SDL2 ];
10 src = fetchFromGitHub {
14 sha256 = "1cnq6rb14d4yllr0yi32p9jmcig8avs3f43bvdjrx4r1mpawspi6";
18 "-DCMAKE_BUILD_TYPE='Release'"
19 "-DBUILD_EXAMPLES='OFF'"
23 homepage = "https://github.com/kode54/dumb";
24 description = "Module/tracker based music format parser and player library";
25 license = licenses.free; # Derivative of GPL
26 maintainers = with maintainers; [ Madouura ];
27 platforms = platforms.all;