nixpkgs/pkgs/games/airstrike/default.nix
Silvan Mosberger 57bccb3cb8 treewide: http -> https sources (#42676)
* treewide: http -> https sources

This updates the source urls of all top-level packages from http to
https where possible.

* buildtorrent: fix url and tab -> spaces
2018-06-28 20:43:35 +02:00

34 lines
801 B
Nix

{ stdenv, fetchurl, makeWrapper, SDL, SDL_image }:
stdenv.mkDerivation rec {
name = "airstrike-pre-${version}";
version = "6a";
src = fetchurl {
url = "https://icculus.org/airstrike/airstrike-pre${version}-src.tar.gz";
sha256 = "1h6rv2zcp84ycmd0kv1pbpqjgwx57dw42x7878d2c2vnpi5jn8qi";
};
buildInputs = [ makeWrapper SDL SDL_image ];
installPhase = ''
ls -l
mkdir -p $out/bin
cp airstrike $out/bin
mkdir -p $out/share
cp -r data airstrikerc $out/share
wrapProgram $out/bin/airstrike \
--run "cd $out/share"
'';
meta = with stdenv.lib; {
description = "A 2d dogfighting game";
homepage = https://icculus.org/airstrike/;
license = licenses.gpl2;
maintainers = with maintainers; [ pSub ];
platforms = platforms.linux;
};
}