2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv
|
2016-12-20 14:38:02 +00:00
|
|
|
, fetchgit
|
|
|
|
, autoreconfHook
|
|
|
|
, glib
|
2021-01-17 02:09:27 +00:00
|
|
|
, 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;
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "cataract";
|
2016-12-20 14:38:02 +00:00
|
|
|
|
|
|
|
src = fetchgit {
|
|
|
|
url = "git://git.bzatek.net/cataract";
|
|
|
|
inherit sha256 rev;
|
|
|
|
};
|
|
|
|
|
2021-01-17 02:09:27 +00:00
|
|
|
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
|
|
|
|
'';
|
|
|
|
|
2016-12-20 14:38:02 +00:00
|
|
|
installPhase = ''
|
|
|
|
mkdir $out/{bin,share} -p
|
|
|
|
cp src/cgg{,-dirgen} $out/bin/
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
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
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
|