mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
44 lines
881 B
Nix
44 lines
881 B
Nix
{ stdenv
|
|
, fetchgit
|
|
, autoreconfHook
|
|
, glib
|
|
, pkgconfig
|
|
, libxml2
|
|
, exiv2
|
|
, imagemagick
|
|
, version
|
|
, sha256
|
|
, rev }:
|
|
|
|
stdenv.mkDerivation {
|
|
inherit version;
|
|
pname = "cataract";
|
|
|
|
src = fetchgit {
|
|
url = "git://git.bzatek.net/cataract";
|
|
inherit sha256 rev;
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
|
buildInputs = [ glib libxml2 exiv2 imagemagick ];
|
|
|
|
prePatch = ''
|
|
sed -i 's|#include <exiv2/exif.hpp>|#include <exiv2/exiv2.hpp>|' src/jpeg-utils.cpp
|
|
'';
|
|
|
|
installPhase = ''
|
|
mkdir $out/{bin,share} -p
|
|
cp src/cgg{,-dirgen} $out/bin/
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
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;
|
|
};
|
|
}
|
|
|
|
|