dumb: init at 2.0.3

This commit is contained in:
Okina Matara 2018-06-17 12:49:06 -05:00 committed by Nikolay Amiantov
parent 26006395f6
commit 3f3c7a03b6
2 changed files with 31 additions and 0 deletions

View file

@ -0,0 +1,29 @@
{ stdenv, fetchFromGitHub, cmake, allegro, SDL2 }:
stdenv.mkDerivation rec {
name = "dumb-${version}";
version = "2.0.3";
enableParallelBuilding = true;
nativeBuildInputs = [ cmake ];
buildInputs = [ allegro SDL2 ];
src = fetchFromGitHub {
owner = "kode54";
repo = "dumb";
rev = version;
sha256 = "1cnq6rb14d4yllr0yi32p9jmcig8avs3f43bvdjrx4r1mpawspi6";
};
cmakeFlags = [
"-DCMAKE_BUILD_TYPE='Release'"
"-DBUILD_EXAMPLES='OFF'"
];
meta = with stdenv.lib; {
homepage = "https://github.com/kode54/dumb";
description = "Module/tracker based music format parser and player library";
license = licenses.free; # Derivative of GPL
maintainers = with maintainers; [ chiiruno ];
platforms = platforms.all;
};
}

View file

@ -22960,6 +22960,8 @@ in
ekiga = callPackage ../applications/networking/instant-messengers/ekiga { };
dumb = callPackage ../misc/dumb { };
emulationstation = callPackage ../misc/emulators/emulationstation {
stdenv = overrideCC stdenv gcc5;
};