nixpkgs/pkgs/applications/misc/cataract/build.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

50 lines
1.2 KiB
Nix
Raw Normal View History

{ lib, stdenv
2016-12-20 14:38:02 +00:00
, fetchgit
, autoreconfHook
, glib
, pkg-config
2016-12-20 14:38:02 +00:00
, libxml2
, exiv2
2021-02-22 15:00:30 +00:00
, imagemagick6
2016-12-20 14:38:02 +00:00
, version
, sha256
, rev }:
2019-08-13 22:52:01 +01:00
stdenv.mkDerivation {
2016-12-20 14:38:02 +00:00
inherit version;
pname = "cataract";
2016-12-20 14:38:02 +00:00
src = fetchgit {
url = "git://git.bzatek.net/cataract";
inherit sha256 rev;
};
nativeBuildInputs = [ autoreconfHook pkg-config ];
2021-02-22 15:00:30 +00:00
buildInputs = [ glib libxml2 exiv2 imagemagick6 ];
2016-12-20 14:38:02 +00:00
2019-09-15 01:31:09 +01:00
prePatch = ''
sed -i 's|#include <exiv2/exif.hpp>|#include <exiv2/exiv2.hpp>|' src/jpeg-utils.cpp
'';
# Add workaround for -fno-common toolchains like upstream gcc-10 to
# avoid build failures like:
# ld: stats.o:/build/cataract-675e647/src/stats.h:24: multiple definition of
# `stats_images'; cgg.o:/build/cataract-675e647/src/stats.h:24: first defined here
NIX_CFLAGS_COMPILE = "-fcommon";
2016-12-20 14:38:02 +00:00
installPhase = ''
mkdir $out/{bin,share} -p
cp src/cgg{,-dirgen} $out/bin/
'';
meta = with lib; {
2019-09-15 01:31:09 +01:00
homepage = "http://cgg.bzatek.net/";
description = "A simple static web photo gallery, designed to be clean and easily usable";
license = licenses.gpl2;
maintainers = [ maintainers.matthiasbeyer ];
platforms = with platforms; linux ++ darwin;
2016-12-20 14:38:02 +00:00
};
}