2022-06-10 02:09:34 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchFromGitHub
|
|
|
|
, SDL2
|
|
|
|
, SDL2_mixer
|
|
|
|
, cmake
|
|
|
|
, 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}";
|
2022-06-10 02:09:34 +00:00
|
|
|
hash = "sha256-I5GTaVWzz0ryGLDSS3rzxp+XFVXZa9hZmgwon/6r83A=";
|
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
|
|
|
homepage = "https://github.com/bvschaik/julius";
|
2022-06-10 02:09:34 +00:00
|
|
|
description = "An open source re-implementation of Caesar III";
|
2024-03-19 02:14:51 +00:00
|
|
|
mainProgram = "julius";
|
2024-03-19 12:26:06 +00:00
|
|
|
license = licenses.agpl3Only;
|
2022-06-10 02:09:34 +00:00
|
|
|
maintainers = with maintainers; [ Thra11 ];
|
2020-06-08 17:08:57 +00:00
|
|
|
platforms = platforms.all;
|
2020-10-31 19:43:19 +00:00
|
|
|
broken = stdenv.isDarwin;
|
2020-06-08 17:08:57 +00:00
|
|
|
};
|
|
|
|
}
|