nixpkgs/pkgs/games/lincity/default.nix

34 lines
1,014 B
Nix
Raw Permalink Normal View History

{ lib, stdenv, fetchurl, fetchpatch, libX11, libXext, xorgproto, libICE, libSM, libpng12, zlib }:
2016-01-25 21:48:34 +00:00
stdenv.mkDerivation rec {
pname = "lincity";
2017-02-28 16:33:31 +00:00
version = "1.13.1";
2016-01-25 21:48:34 +00:00
src = fetchurl {
url = "mirror://sourceforge/lincity/${pname}-${version}.tar.gz";
2017-02-28 16:33:31 +00:00
sha256 = "0p81wl7labyfb6rgp0hi42l2akn3n7r2bnxal1wyvjylzw8vsk3v";
};
2016-01-25 21:48:34 +00:00
buildInputs = [
2017-02-28 16:33:31 +00:00
libICE libpng12 libSM libX11 libXext
xorgproto zlib
2016-01-25 21:48:34 +00:00
];
2017-02-28 16:33:31 +00:00
patches = [
(fetchpatch {
url = "https://sources.debian.net/data/main/l/lincity/1.13.1-13/debian/patches/extern-inline-functions-777982";
sha256 = "06dp3zwk0z5wr5a3xaaj2my75vcjcy98vc22hsag7ggd9jwrkcp0";
})
(fetchpatch {
url = "https://sources.debian.net/data/main/l/lincity/1.13.1-13/debian/patches/clang-ftbfs-757859";
sha256 = "098rnywcsyc0m11x4a5m3dza8i0jmfh6pacfgma1vvxpsfkb6ngp";
})
];
meta = with lib; {
description = "City simulation game";
2017-02-28 16:33:31 +00:00
license = licenses.gpl2Plus;
homepage = "https://sourceforge.net/projects/lincity";
};
}