Merge branch 'master.upstream' into staging.upstream
This commit is contained in:
@@ -1,11 +1,11 @@
|
||||
{stdenv, fetchurl, libjpeg, lcms2, gettext, jasper }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "dcraw-9.22";
|
||||
name = "dcraw-9.26.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://www.cybercom.net/~dcoffin/dcraw/archive/${name}.tar.gz";
|
||||
sha256 = "00dz85fr5r9k3nlwdbdi30fpqr8wihamzpyair7l7zk0vkrax402";
|
||||
sha256 = "18zvzaxjq1yaj90xm8bwb30lqbjyjyp002bp175dayh3kr91syc5";
|
||||
};
|
||||
|
||||
buildInputs = [ libjpeg lcms2 gettext jasper ];
|
||||
|
||||
@@ -38,6 +38,13 @@ stdenv.mkDerivation rec {
|
||||
]
|
||||
++ stdenv.lib.optional (xorg == null) "--without-x";
|
||||
|
||||
postPatch = stdenv.lib.optionalString stdenv.isDarwin ''
|
||||
for foo in cmd/dot/Makefile.in cmd/edgepaint/Makefile.in \
|
||||
cmd/mingle/Makefile.in plugin/gdiplus/Makefile.in; do
|
||||
substituteInPlace "$foo" --replace "-lstdc++" "-lc++"
|
||||
done
|
||||
'';
|
||||
|
||||
preBuild = ''
|
||||
sed -e 's@am__append_5 *=.*@am_append_5 =@' -i lib/gvc/Makefile
|
||||
'';
|
||||
|
||||
@@ -3,18 +3,16 @@
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "logstalgia-${version}";
|
||||
version = "1.0.6";
|
||||
version = "1.0.7";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/acaudwell/Logstalgia/releases/download/${name}/${name}.tar.gz";
|
||||
sha256 = "0d2zhn0q26rv2nb3hdbg0mb69l66g8pkys5is6rb0r6f5is986x8";
|
||||
sha256 = "1qghz1j3jmfj093br2hfyibayg3fmhg8fvp5ix9n9rbvzc1zslsm";
|
||||
};
|
||||
|
||||
buildInputs = [ glew SDL ftgl pkgconfig libpng libjpeg pcre SDL_image mesa boost
|
||||
glm ];
|
||||
|
||||
NIX_CFLAGS_COMPILE = "-std=c++11"; # fix build with glm >= 0.9.6.0
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = http://code.google.com/p/logstalgia;
|
||||
description = "Website traffic visualization tool";
|
||||
|
||||
@@ -0,0 +1,25 @@
|
||||
{ stdenv, fetchurl, libpng, netpbm }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "sng-${version}";
|
||||
version = "1.0.6";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/sng/sng-${version}.tar.gz";
|
||||
sha256 = "04ym62qh8blsqigm3kr1shj9pn62y373wdaavk74rzwjzlhwhmq6";
|
||||
};
|
||||
|
||||
buildInputs = [ libpng ];
|
||||
|
||||
configureFlags = [
|
||||
"--with-rgbtxt=${netpbm}/share/netpbm/misc/rgb.txt"
|
||||
];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Minilanguage designed to represent the entire contents of a PNG file in an editable form";
|
||||
homepage = http://sng.sourceforge.net/;
|
||||
license = licenses.zlib;
|
||||
maintainers = [ maintainers.dezgeg ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user