2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, cmake, SDL2, SDL2_mixer, libpng }:
|
2020-06-08 17:08:57 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "julius";
|
2021-10-16 11:02:17 +00:00
|
|
|
version = "1.7.0";
|
2020-06-08 17:08:57 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "bvschaik";
|
|
|
|
repo = "julius";
|
|
|
|
rev = "v${version}";
|
2021-10-16 11:02:17 +00:00
|
|
|
sha256 = "0w7kmgz9ya0ck9cxhsyralarg7y6ydx4plmh33r4mkxkamlr7493";
|
2020-06-08 17:08:57 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
buildInputs = [ SDL2 SDL2_mixer libpng ];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-06-08 17:08:57 +00:00
|
|
|
description = "An open source re-implementation of Caesar III";
|
|
|
|
homepage = "https://github.com/bvschaik/julius";
|
|
|
|
license = licenses.agpl3;
|
|
|
|
platforms = platforms.all;
|
2020-10-31 19:43:19 +00:00
|
|
|
broken = stdenv.isDarwin;
|
2020-06-08 17:08:57 +00:00
|
|
|
maintainers = with maintainers; [ Thra11 ];
|
|
|
|
};
|
|
|
|
}
|