k3s: format with nixfmt-rfc-style
[NixPkgs.git] / pkgs / games / julius / default.nix
blob5e1f046d9710312e875383acd703ebfa6d836976
1 { lib
2 , stdenv
3 , fetchFromGitHub
4 , SDL2
5 , SDL2_mixer
6 , cmake
7 , libpng
8 }:
10 stdenv.mkDerivation rec {
11   pname = "julius";
12   version = "1.7.0";
14   src = fetchFromGitHub {
15     owner = "bvschaik";
16     repo = "julius";
17     rev = "v${version}";
18     hash = "sha256-I5GTaVWzz0ryGLDSS3rzxp+XFVXZa9hZmgwon/6r83A=";
19   };
21   nativeBuildInputs = [ cmake ];
22   buildInputs = [ SDL2 SDL2_mixer libpng ];
24   meta = with lib; {
25     homepage = "https://github.com/bvschaik/julius";
26     description = "An open source re-implementation of Caesar III";
27     mainProgram = "julius";
28     license = licenses.agpl3Only;
29     maintainers = with maintainers; [ Thra11 ];
30     platforms = platforms.all;
31     broken = stdenv.isDarwin;
32   };