mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
26 lines
673 B
Nix
26 lines
673 B
Nix
{ lib, stdenv, fetchFromGitHub, cmake, SDL2, SDL2_mixer, libpng }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "julius";
|
|
version = "1.7.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "bvschaik";
|
|
repo = "julius";
|
|
rev = "v${version}";
|
|
sha256 = "0w7kmgz9ya0ck9cxhsyralarg7y6ydx4plmh33r4mkxkamlr7493";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
buildInputs = [ SDL2 SDL2_mixer libpng ];
|
|
|
|
meta = with lib; {
|
|
description = "An open source re-implementation of Caesar III";
|
|
homepage = "https://github.com/bvschaik/julius";
|
|
license = licenses.agpl3;
|
|
platforms = platforms.all;
|
|
broken = stdenv.isDarwin;
|
|
maintainers = with maintainers; [ Thra11 ];
|
|
};
|
|
}
|