nixpkgs/pkgs/games/julius/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
676 B
Nix
Raw Normal View History

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 ];
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";
2020-06-08 17:08:57 +00:00
license = licenses.agpl3;
2022-06-10 02:09:34 +00:00
maintainers = with maintainers; [ Thra11 ];
2020-06-08 17:08:57 +00:00
platforms = platforms.all;
broken = stdenv.isDarwin;
2020-06-08 17:08:57 +00:00
};
}