about summary refs log tree commit diff
path: root/pkgs/misc/emulators/cen64/default.nix
blob: 0153ed11cd2de1af748c169bde12d590c3c702f4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{ lib, cmake, fetchFromGitHub, libGL, libiconv, libX11, openal, stdenv }:

stdenv.mkDerivation rec {
  pname = "cen64";
  version = "unstable-2020-02-20";

  src = fetchFromGitHub {
    owner = "n64dev";
    repo = "cen64";
    rev = "6f9f5784bf0a720522c4ecb0915e20229c126aed";
    sha256 = "08q0a3b2ilb95zlz4cw681gwz45n2wrb2gp2z414cf0bhn90vz0s";
  };

  nativeBuildInputs = [ cmake ];
  buildInputs = [ libGL libiconv openal libX11 ];

  installPhase = ''
    mkdir -p $out/bin
    mv cen64 $out/bin
  '';

  meta = with lib; {
    description = "A Cycle-Accurate Nintendo 64 Emulator";
    license = licenses.bsd3;
    homepage = "https://github.com/n64dev/cen64";
    maintainers = [ maintainers._414owen ];
    platforms = [ "x86_64-linux" ];
  };
}