summary refs log tree commit diff
path: root/pkgs/desktops/xfce-4.6/applications/ristretto.nix
blob: aefabcb65fbd5abd25eb009db59dc3420bda2712 (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
{ stdenv, fetchurl, pkgconfig, intltool, libexif, gtk, thunar
, exo, dbus_glib, libxfce4util, libxfcegui4, xfconf }:

stdenv.mkDerivation rec {
  name = "ristretto-0.0.22";
  
  src = fetchurl {
    url = "http://archive.xfce.org/src/apps/ristretto/0.0/${name}.tar.gz";
    sha1 = "bddbc8618ba67699ccf5ee4ea0b538b1be7fdb0a";
  };

  buildInputs =
    [ pkgconfig intltool libexif gtk thunar exo dbus_glib
      libxfce4util libxfcegui4 xfconf
    ];

  NIX_LDFLAGS = "-lX11";

  meta = {
    homepage = http://goodies.xfce.org/projects/applications/ristretto;
    description = "A fast and lightweight picture-viewer for the Xfce desktop environment";
    license = "GPLv2+";
  };
}