about summary refs log tree commit diff
path: root/pkgs/applications/graphics/xzgv/default.nix
blob: 9993144294527703a91fea71602bbd5798e4e7b7 (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
{ stdenv, fetchurl, gtk2, pkgconfig, texinfo }:

stdenv.mkDerivation rec {
  name = "xzgv-${version}";
  version = "0.9.1";
  src = fetchurl {
    url = "mirror://sourceforge/xzgv/xzgv-${version}.tar.gz";
    sha256 = "1rh432wnvzs434knzbda0fslhfx0gngryrrnqkfm6gwd2g5mxcph";
  };
  buildInputs = [ gtk2 pkgconfig texinfo ];
  patches = [ ./fix-linker-paths.patch ];
  postPatch = ''
    substituteInPlace config.mk \
      --replace /usr/local $out
    substituteInPlace config.mk \
      --replace "CFLAGS=-O2 -Wall" "CFLAGS=-Wall"
    substituteInPlace Makefile \
      --replace "all: src man" "all: src man info"
  '';
  meta = with stdenv.lib; {
    homepage = http://sourceforge.net/projects/xzgv/;
    description = "Picture viewer for X with a thumbnail-based selector";
    license = licenses.gpl2;
    maintainers = [ maintainers.womfoo ];
    platforms = platforms.linux;
  };
}