julius: init at 1.4.1

gstqt5
Tom Hall 2020-06-08 18:08:57 +01:00
parent ad141fcbcb
commit 731f722289
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,24 @@
{ stdenv, fetchFromGitHub, cmake, SDL2, SDL2_mixer, libpng }:
stdenv.mkDerivation rec {
pname = "julius";
version = "1.4.1";
src = fetchFromGitHub {
owner = "bvschaik";
repo = "julius";
rev = "v${version}";
sha256 = "12hhnhdwgz7hd3hlndbnk15pxggm1375qs0764ija4nl1gbpb110";
};
nativeBuildInputs = [ cmake ];
buildInputs = [ SDL2 SDL2_mixer libpng ];
meta = with stdenv.lib; {
description = "An open source re-implementation of Caesar III";
homepage = "https://github.com/bvschaik/julius";
license = licenses.agpl3;
platforms = platforms.all;
maintainers = with maintainers; [ Thra11 ];
};
}

View File

@ -10611,6 +10611,8 @@ in
jenkins-job-builder = with python3Packages; toPythonApplication jenkins-job-builder;
julius = callPackage ../games/julius { };
kafkacat = callPackage ../development/tools/kafkacat { };
kati = callPackage ../development/tools/build-managers/kati { };