4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
48 lines
1.5 KiB
Nix
48 lines
1.5 KiB
Nix
{ lib, stdenv, fetchFromGitHub, cmake, doxygen, graphviz, makeWrapper
|
|
, boost168, SDL2, python2, freetype, openal, libogg, libvorbis, zlib, libpng, libtiff
|
|
, libjpeg, libGLU, libGL, glew, libxslt
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "0.4.9";
|
|
pname = "freeorion";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "freeorion";
|
|
repo = "freeorion";
|
|
rev = "v${version}";
|
|
sha256 = "18xigx4qla225ybf7mc1w8zfm81nhcm1i5181n5l2fbndvslb1wf";
|
|
};
|
|
|
|
buildInputs = [
|
|
(boost168.override { enablePython = true; })
|
|
SDL2 python2 freetype openal libogg libvorbis zlib libpng libtiff libjpeg libGLU libGL glew ];
|
|
|
|
nativeBuildInputs = [ cmake doxygen graphviz makeWrapper ];
|
|
|
|
postInstall = ''
|
|
mkdir -p $out/fixpaths
|
|
# We need final slashes for XSLT replace to work properly
|
|
substitute ${./fix-paths.xslt} $out/fixpaths/fix-paths.xslt \
|
|
--subst-var-by nixStore "$NIX_STORE/" \
|
|
--subst-var-by out "$out/"
|
|
substitute ${./fix-paths.sh} $out/fixpaths/fix-paths \
|
|
--subst-var-by libxsltBin ${libxslt.bin} \
|
|
--subst-var-by shell ${stdenv.shell} \
|
|
--subst-var out
|
|
chmod +x $out/fixpaths/fix-paths
|
|
|
|
wrapProgram $out/bin/freeorion \
|
|
--run $out/fixpaths/fix-paths \
|
|
--prefix LD_LIBRARY_PATH : $out/lib/freeorion
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "A free, open source, turn-based space empire and galactic conquest (4X) computer game";
|
|
homepage = "http://www.freeorion.org";
|
|
license = with licenses; [ gpl2 cc-by-sa-30 ];
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ tex ];
|
|
};
|
|
}
|