4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
28 lines
843 B
Nix
28 lines
843 B
Nix
{ 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 = if stdenv.buildPlatform.isDarwin then [ ./darwin.patch ] else [];
|
|
configureFlags =
|
|
if localStateDir != null then
|
|
["--localstatedir=${localStateDir}"]
|
|
else
|
|
[];
|
|
|
|
meta = with lib; {
|
|
description = "The falling tower game";
|
|
license = licenses.gpl2;
|
|
maintainers = with maintainers; [ pmeunier ];
|
|
};
|
|
}
|