summary refs log tree commit diff
path: root/pkgs/misc/emulators/resim/default.nix
blob: 81acdf81f2ec80f8a64de04f04948bd6e102ac64 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ fetchFromGitHub, stdenv, cmake, qt4 }:

stdenv.mkDerivation {
  name = "resim";
  src = fetchFromGitHub {
    owner = "itszor";
    repo = "resim";
    rev = "cdc7808ceb7ba4ac00d0d08ca646b58615059150";
    sha256 = "1743lngqxd7ai4k6cd4d1cf9h60z2pnvr2iynfs1zlpcj3w1hx0c";
  };
  nativeBuildInputs = [ cmake ];
  buildInputs = [ qt4 ];
  installPhase = ''
    mkdir -pv $out/{lib,bin}
    cp -v libresim/libarmsim.so $out/lib/libarmsim.so
    cp -v vc4emul/vc4emul $out/bin/vc4emul
  '';
}