Address PR comments

This commit is contained in:
Roman Plášil
2020-02-28 18:50:12 +01:00
committed by Profpatsch
parent f47e6ff4ed
commit 3a3ccb106e
5 changed files with 25 additions and 25 deletions
@@ -1,14 +1,14 @@
{ stdenv, fetchzip, libGLU, libGL, unzip, libXrandr, libX11, libXxf86vm }:
let
common = import ./common.nix { inherit fetchzip; };
in
stdenv.mkDerivation rec {
pname = "irrlicht";
version = "1.8.4";
pname = common.pname;
version = common.version;
src = fetchzip {
url = "mirror://sourceforge/irrlicht/${pname}-${version}.zip";
sha256 = "02sq067fn4xpf0lcyb4vqxmm43qg2nxx770bgrl799yymqbvih5f";
};
src = common.src;
preConfigure = ''
cd source/Irrlicht