mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 16:33:15 +00:00
Updating supertuxkart, and making it install the binary to /bin instead of /games
svn path=/nixpkgs/trunk/; revision=15043
This commit is contained in:
parent
182513d1c5
commit
90655e7414
@ -2,17 +2,21 @@
|
|||||||
, libvorbis, libogg, gettext }:
|
, libvorbis, libogg, gettext }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "supertuxkart-0.5";
|
name = "supertuxkart-0.6.1a";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://sourceforge/supertuxkart/${name}.tar.bz2";
|
url = "mirror://sourceforge/supertuxkart/${name}.tar.bz2";
|
||||||
sha256 = "1c9gdfcsygsflbrsar38p6gm17kxnna70s9mw4bsixyg45aghii9";
|
sha256 = "1p4jl4v74f7ff7qkw10k48fvyg247wqzc097ds07y3pvn9a696w4";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
plib SDL openal freealut mesa libvorbis libogg gettext
|
plib SDL openal freealut mesa libvorbis libogg gettext
|
||||||
];
|
];
|
||||||
|
|
||||||
|
postInstall = ''
|
||||||
|
mv $out/games $out/bin
|
||||||
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "SuperTuxKart is a Free 3D kart racing game";
|
description = "SuperTuxKart is a Free 3D kart racing game";
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user