about summary refs log tree commit diff
path: root/pkgs/tools/graphics/fbv/default.nix
blob: 659a661fded8a3234514e190b6372870dd3a0591 (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
{ lib, stdenv, fetchurl, fetchpatch, getopt, libjpeg, libpng12, giflib }:

stdenv.mkDerivation rec {
  pname = "fbv";
  version = "1.0b";

  src = fetchurl {
    url = "http://s-tech.elsat.net.pl/fbv/fbv-${version}.tar.gz";
    sha256 = "0g5b550vk11l639y8p5sx1v1i6ihgqk0x1hd0ri1bc2yzpdbjmcv";
  };

  patches = [
    (fetchpatch {
      url = "https://raw.githubusercontent.com/void-linux/void-packages/4a5bfe522ea5afd8203e804dc6a642d0871cd6dd/srcpkgs/fbv/patches/giflib-5.1.patch";
      sha256 = "00q1zcn92yvvyij68bnq0m1sr3a411w914f4nyp6mpz0j5xc6dc7";
    })
  ];

  patchFlags = [ "-p0" ];

  buildInputs = [ getopt libjpeg libpng12 giflib ];
  makeFlags = [ "LDFLAGS=-lgif" ];

  enableParallelBuilding = true;

  preInstall = ''
    mkdir -p $out/{bin,man/man1}
  '';

  meta = with lib; {
    description = "View pictures on a linux framebuffer device";
    homepage = "http://s-tech.elsat.net.pl/fbv/";
    license = licenses.gpl2Only;
    maintainers = with maintainers; [ peterhoeg ];
    mainProgram = "fbv";
  };
}