lol
1{ fetchurl, stdenv, libjpeg, libpng, libtiff, perl }:
2
3stdenv.mkDerivation rec {
4 name = "libpano13-2.9.19";
5
6 src = fetchurl {
7 url = "mirror://sourceforge/panotools/${name}.tar.gz";
8 sha256 = "1a4m3plmfcrrplqs9zfzhc5apibn10m5sajpizm1sd3q74w5fwq3";
9 };
10
11 buildInputs = [ perl libjpeg libpng libtiff ];
12
13 # one of the tests succeeds on my machine but fails on Hydra (no idea why)
14 #doCheck = true;
15
16 meta = {
17 homepage = http://panotools.sourceforge.net/;
18 description = "Free software suite for authoring and displaying virtual reality panoramas";
19 license = stdenv.lib.licenses.gpl2Plus;
20
21 platforms = stdenv.lib.platforms.gnu; # arbitrary choice
22 };
23}