nixpkgs/pkgs/by-name/wa/warmux/package.nix
aleksana 571c71e6f7 treewide: migrate packages to pkgs/by-name, take 1
We are migrating packages that meet below requirements:

1. using `callPackage`
2. called path is a directory
3. overriding set is empty (`{ }`)
4. not containing path expressions other than relative path (to
makenixpkgs-vet happy)
5. not referenced by nix files outside of the directory, other
than`pkgs/top-level/all-packages.nix`
6. not referencing nix files outside of the directory
7. not referencing `default.nix` (since it's changed to `package.nix`)
8. `outPath` doesn't change after migration

The tool is here: https://github.com/Aleksanaa/by-name-migrate.
2024-11-09 20:04:51 +08:00

40 lines
1.2 KiB
Nix

{ lib, stdenv, fetchFromGitHub, autoconf, automake
, zlib, curl, gnutls, fribidi, libpng, SDL, SDL_gfx, SDL_image, SDL_mixer
, SDL_net, SDL_ttf, libunwind, libX11, xorgproto, libxml2, pkg-config
, gettext, intltool, libtool, perl
}:
stdenv.mkDerivation {
pname = "warmux";
version = "unstable-2017-10-20";
src = fetchFromGitHub {
owner = "fluxer";
repo = "warmux";
rev = "8f81d4fc309a548ae89a068c2dde27b7e7ef8851";
sha256 = "1hvzglsmp75xiqqb0k75qjz4jwi8kl3fhn8zfsz53hhhqmbw6wkr";
};
__structuredAttrs = true;
preConfigure = "patchShebangs autogen.sh && ./autogen.sh";
configureFlags = ["CFLAGS=-include ${zlib.dev}/include/zlib.h"];
nativeBuildInputs = [
autoconf automake gettext intltool libtool pkg-config
];
buildInputs = [
zlib curl gnutls fribidi libpng SDL SDL_gfx SDL_image SDL_mixer
SDL_net SDL_ttf libunwind libX11 xorgproto libxml2 perl
];
enableParallelBuilding = true;
meta = with lib; {
description = "Ballistics turn-based battle game between teams - unofficial copy";
maintainers = with maintainers; [ raskin ];
platforms = platforms.linux;
license = with licenses; [ gpl2Plus ufl ];
homepage = "https://github.com/fluxer/warmux";
};
}