summary refs log tree commit diff
path: root/pkgs/applications/graphics/panotools/default.nix
blob: 90bc8e64b25dd8ca75904befe2bb5a869665cdff (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{stdenv, fetchsvn, libjpeg, libpng, libtiff, automake, libtool, autoconf }:

stdenv.mkDerivation {
  name = "panotools-r955";

  src = fetchsvn {
    url = https://panotools.svn.sourceforge.net/svnroot/panotools/trunk/libpano;
    rev = 955;
  };

  configurePhase = ''
    export AUTOGEN_CONFIGURE_ARGS="--prefix $out"
    ./bootstrap
  '';

  buildInputs = [ libjpeg libpng libtiff automake libtool autoconf ];

  meta = {
    homepage = http://panotools.sourceforge.net/;
    description = "Panorama Tools";
    license = "GPL";
  };
}