biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / misc / cataract / build.nix
blob860a49b5ce03ecf590767928dada4cff2a7d8e3d
1 { lib, stdenv
2 , fetchgit
3 , autoreconfHook
4 , glib
5 , pkg-config
6 , libxml2
7 , exiv2
8 , imagemagick6
9 , version
10 , sha256
11 , rev }:
13 stdenv.mkDerivation {
14   inherit version;
15   pname = "cataract";
17   src = fetchgit {
18     url = "git://git.bzatek.net/cataract";
19     inherit sha256 rev;
20   };
22   nativeBuildInputs = [ autoreconfHook pkg-config ];
23   buildInputs = [ glib libxml2 exiv2 imagemagick6 ];
25   prePatch = ''
26     sed -i 's|#include <exiv2/exif.hpp>|#include <exiv2/exiv2.hpp>|' src/jpeg-utils.cpp
27   '';
29   # Add workaround for -fno-common toolchains like upstream gcc-10 to
30   # avoid build failures like:
31   #   ld: stats.o:/build/cataract-675e647/src/stats.h:24: multiple definition of
32   #     `stats_images'; cgg.o:/build/cataract-675e647/src/stats.h:24: first defined here
33   env.NIX_CFLAGS_COMPILE = "-fcommon";
35   installPhase = ''
36     mkdir $out/{bin,share} -p
37     cp src/cgg{,-dirgen} $out/bin/
38   '';
40   meta = with lib; {
41     homepage = "http://cgg.bzatek.net/";
42     description = "Simple static web photo gallery, designed to be clean and easily usable";
43     license = licenses.gpl2;
44     maintainers = [ maintainers.matthiasbeyer ];
45     platforms = with platforms; linux ++ darwin;
46   };