summary refs log tree commit diff
path: root/pkgs/tools/graphics/bins/default.nix
blob: 63bf9aae5521c94edc40873fe517a8410afd9617 (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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{ stdenv, fetchurl, makeWrapper, perl, perlPackages }:

let
  version = "1.1.29";

in

#note: bins-edit-gui does not work

stdenv.mkDerivation {
  name = "bins-${version}";

  src = fetchurl {
    url = "http://download.gna.org/bins/bins-${version}.tar.gz";
    sha256 = "0n4pcssyaic4xbk25aal0b3g0ibmi2f3gpv0gsnaq61sqipyjl94";
  };

  buildInputs = with perlPackages; [ makeWrapper perl
                                     ImageSize ImageInfo PerlMagick
                                     URI HTMLParser HTMLTemplate HTMLClean
                                     XMLGrove XMLHandlerYAWriter
                                     TextIconv TextUnaccent
                                     DateTimeFormatDateParse ]; #TODO need Gtk (not Gtk2?) for bins-edit-gui

  patches = [ ./bins_edit-isa.patch
              ./hashref.patch ];

  installPhase = ''
    export DESTDIR=$out;
    export PREFIX=.;

    echo | ./install.sh

    for f in bins bins_edit bins-edit-gui; do
      substituteInPlace $out/bin/$f \
        --replace /usr/bin/perl ${perl}/bin/perl \
        --replace /etc/bins $out/etc/bins \
        --replace /usr/local/share $out/share;
      wrapProgram $out/bin/$f --set PERL5LIB "$PERL5LIB";
    done
  '';

  meta = {
    description = "Generates static HTML photo albums";
    homepage = http://bins.sautret.org;
    license = stdenv.lib.licenses.gpl2;
  };
}