Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: eb8abb9aded4
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 72a8952e8454
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Mar 8, 2019

  1. Copy the full SHA
    72a8952 View commit details
Showing with 11 additions and 14 deletions.
  1. +11 −14 pkgs/games/xpilot/default.nix
25 changes: 11 additions & 14 deletions pkgs/games/xpilot/default.nix
Original file line number Diff line number Diff line change
@@ -1,23 +1,20 @@
{stdenv, fetchurl, libX11, libSM, SDL, libGLU_combined, expat, SDL_ttf, SDL_image, zlib}:
let
buildInputs = [
libX11 libSM SDL SDL_ttf SDL_image libGLU_combined expat zlib
];
in
{ stdenv, fetchurl, libX11, libSM, SDL, libGLU_combined, expat, SDL_ttf
, SDL_image, zlib, libXxf86misc }:
stdenv.mkDerivation rec {
version = "4.7.3";
name = "xpilot-ng-${version}";
inherit buildInputs;
version = "4.7.3";
src = fetchurl {
url = "mirror://sourceforge/xpilot/xpilot_ng/${name}/${name}.tar.gz";
sha256 = "02a7pnp88kh88fzda5q8mzlckk6y9r5fw47j00h26wbsfly0k1zj";
};
meta = {
inherit version;
description = ''A multiplayer X11 space combat game'';
buildInputs = [
libX11 libSM SDL SDL_ttf SDL_image libGLU_combined expat zlib libXxf86misc
];
meta = with stdenv.lib; {
description = "A multiplayer X11 space combat game";
homepage = http://xpilot.sf.net/;
license = stdenv.lib.licenses.gpl2Plus ;
maintainers = [stdenv.lib.maintainers.raskin];
platforms = stdenv.lib.platforms.linux;
license = licenses.gpl2Plus;
maintainers = [ maintainers.raskin ];
platforms = platforms.linux;
};
}