mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-10-30 14:11:21 +00:00
julius: init at 1.4.1
This commit is contained in:
parent
ad141fcbcb
commit
731f722289
24
pkgs/games/julius/default.nix
Normal file
24
pkgs/games/julius/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -10611,6 +10611,8 @@ in
|
|||||||
|
|
||||||
jenkins-job-builder = with python3Packages; toPythonApplication jenkins-job-builder;
|
jenkins-job-builder = with python3Packages; toPythonApplication jenkins-job-builder;
|
||||||
|
|
||||||
|
julius = callPackage ../games/julius { };
|
||||||
|
|
||||||
kafkacat = callPackage ../development/tools/kafkacat { };
|
kafkacat = callPackage ../development/tools/kafkacat { };
|
||||||
|
|
||||||
kati = callPackage ../development/tools/build-managers/kati { };
|
kati = callPackage ../development/tools/build-managers/kati { };
|
||||||
|
Loading…
Reference in New Issue
Block a user