mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
simgear: fix via update
This commit is contained in:
parent
5e8747300e
commit
871c9ff726
@ -1,23 +1,23 @@
|
||||
x@{builderDefsPackage
|
||||
, plib, freeglut, xproto, libX11, libXext, xextproto, libXi , inputproto
|
||||
, libICE, libSM, libXt, libXmu, mesa, boost, zlib, libjpeg , freealut
|
||||
, openscenegraph, openal
|
||||
, openscenegraph, openal, expat, cmake
|
||||
, ...}:
|
||||
builderDefsPackage
|
||||
(a :
|
||||
let
|
||||
helperArgNames = ["stdenv" "fetchurl" "builderDefsPackage"] ++
|
||||
(a :
|
||||
let
|
||||
helperArgNames = ["stdenv" "fetchurl" "builderDefsPackage"] ++
|
||||
[];
|
||||
|
||||
buildInputs = map (n: builtins.getAttr n x)
|
||||
(builtins.attrNames (builtins.removeAttrs x helperArgNames));
|
||||
sourceInfo = rec {
|
||||
baseName="SimGear";
|
||||
version="2.0.0";
|
||||
baseName="simgear";
|
||||
version="2.10.0";
|
||||
name="${baseName}-${version}";
|
||||
extension="tar.gz";
|
||||
url="ftp://ftp.goflyflightgear.com/simgear/Source/${name}.${extension}";
|
||||
hash="08fia5rjrlvw45i3v09fn90vhdhb54wjl6kn3d8vpspxmsw4fn55";
|
||||
extension="tar.bz2";
|
||||
url="http://mirrors.ibiblio.org/pub/mirrors/simgear/ftp/Source/${name}.${extension}";
|
||||
hash="0pb148hb35p1c5iz0kpiclmswjl9bax9xfm087ldpxsqg9a0sb2q";
|
||||
};
|
||||
in
|
||||
rec {
|
||||
@ -30,8 +30,8 @@ rec {
|
||||
inherit buildInputs;
|
||||
|
||||
/* doConfigure should be removed if not needed */
|
||||
phaseNames = ["doConfigure" "doMakeInstall"];
|
||||
|
||||
phaseNames = [ "doCmake" "doMakeInstall" ];
|
||||
|
||||
meta = {
|
||||
description = "Simulation construction toolkit";
|
||||
maintainers = with a.lib.maintainers;
|
||||
|
@ -4848,7 +4848,7 @@ let
|
||||
|
||||
silgraphite = callPackage ../development/libraries/silgraphite {};
|
||||
|
||||
simgear = callPackage ../development/libraries/simgear {};
|
||||
simgear = callPackage ../development/libraries/simgear { };
|
||||
|
||||
sfml_git = callPackage ../development/libraries/sfml { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user