mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 22:36:23 +01:00
ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
28 lines
711 B
Nix
28 lines
711 B
Nix
{lib, stdenv, fetchurl, SDL, SDL_image, SDL_mixer, SDL_net} :
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "gav";
|
|
version = "0.9.0";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/gav/gav-${version}.tar.gz";
|
|
sha256 = "8f0deb8b2cd775b339229054f4f282583a4cfbcba9d27a6213cf910bab944f3e";
|
|
};
|
|
|
|
prePatch = ''
|
|
mkdir -p $out/bin
|
|
sed -e "s@/usr@$out@" -i Makefile
|
|
sed -e "s@/usr@$out@" -i Theme.h
|
|
'';
|
|
|
|
patches = [ ./gcc.patch ];
|
|
buildInputs = [SDL SDL_image SDL_mixer SDL_net];
|
|
|
|
meta = {
|
|
description = "Remake of AV Arcade Volleyball";
|
|
mainProgram = "gav";
|
|
homepage = "https://gav.sourceforge.net/";
|
|
license = lib.licenses.gpl2Plus;
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
}
|