summary refs log tree commit diff
path: root/pkgs/games/gmad/default.nix
blob: e51c326da195e8eee70bd5bf0e30ba8109e2bec8 (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
30
31
32
33
34
{ stdenv, fetchFromGitHub, premake4, bootil }:

stdenv.mkDerivation rec {
  name = "gmad-unstable-2015-04-16";

  meta = {
    description = "Garry's Mod Addon Creator and Extractor";
    homepage = https://github.com/garrynewman/gmad;
    license = stdenv.lib.licenses.unfree;
    maintainers = [ stdenv.lib.maintainers.abigailbuccaneer ];
    platforms = stdenv.lib.platforms.all;
  };

  src = fetchFromGitHub {
    owner = "garrynewman";
    repo = "gmad";
    rev = "377f3458bf1ecb8a1a2217c2194773e3c2a2dea0";
    sha256="0myi9njr100gxhxk1vrzr2sbij5kxl959sq0riiqgg01div338g0";
  };

  buildInputs = [ premake4 bootil ];

  targetName =
    if stdenv.isLinux then "gmad_linux"
    else if stdenv.isDarwin then "gmad_osx"
    else "gmad";

  premakeFlags = [ "--bootil_lib=${bootil}/lib" "--bootil_inc=${bootil}/include" ];

  installPhase = ''
    mkdir -p $out/bin
    cp ${targetName} $out/bin/gmad
  '';
}