about summary refs log tree commit diff
path: root/nixpkgs/pkgs/games/xjump/default.nix
blob: 2c56e0bba4f66593b48247db5721029d00b4f602 (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
{ lib, stdenv, fetchFromGitHub, autoconf, automake, libX11, libXt, libXpm, libXaw, localStateDir?null }:

stdenv.mkDerivation {
  pname = "xjump";
  version = "2.9.3";
  src = fetchFromGitHub {
    owner = "hugomg";
    repo = "xjump";
    rev = "e7f20fb8c2c456bed70abb046c1a966462192b80";
    sha256 = "0hq4739cvi5a47pxdc0wwkj2lmlqbf1xigq0v85qs5bq3ixmq2f7";
  };
  nativeBuildInputs = [ autoconf automake ];
  buildInputs = [ libX11 libXt libXpm libXaw ];
  preConfigure = "autoreconf --install";
  patches = lib.optionals stdenv.buildPlatform.isDarwin [ ./darwin.patch ];
  configureFlags = lib.optionals (localStateDir != null) ["--localstatedir=${localStateDir}"];

  meta = with lib; {
    description = "The falling tower game";
    license = licenses.gpl2;
    maintainers = with maintainers; [ pmeunier ];
  };
}