2021-01-10 23:54:33 -08:00
|
|
|
{ lib, stdenv, fetchurl, cmake, unzip, pkg-config, libXpm, fltk13, freeimage }:
|
2014-05-06 02:38:46 -07:00
|
|
|
|
2019-08-13 14:52:01 -07:00
|
|
|
stdenv.mkDerivation {
|
2014-08-25 03:16:18 -07:00
|
|
|
name = "posterazor-1.5.1";
|
2014-05-06 02:38:46 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
2014-08-25 03:16:18 -07:00
|
|
|
url = "mirror://sourceforge/posterazor/1.5.1/PosteRazor-1.5.1-Source.zip";
|
|
|
|
sha256 = "1dqpdk8zl0smdg4fganp3hxb943q40619qmxjlga9jhjc01s7fq5";
|
2014-05-06 02:38:46 -07:00
|
|
|
};
|
|
|
|
|
2016-02-26 09:38:15 -08:00
|
|
|
hardeningDisable = [ "format" ];
|
2016-02-12 07:39:09 -08:00
|
|
|
|
2020-12-30 23:48:55 -08:00
|
|
|
nativeBuildInputs = [ cmake pkg-config unzip ];
|
|
|
|
buildInputs = [ libXpm fltk13 freeimage ];
|
2014-05-06 02:38:46 -07:00
|
|
|
|
|
|
|
unpackPhase = ''
|
|
|
|
unzip $src -d posterazor
|
|
|
|
cd posterazor/src
|
|
|
|
'';
|
|
|
|
|
|
|
|
# https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=667328
|
|
|
|
patchPhase = ''
|
|
|
|
sed "s/\(#define CASESENSITIVESTRCMP strcasecmp\)/#include <unistd.h>\n\1/" -i FlPosteRazorDialog.cpp
|
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/bin
|
|
|
|
cp PosteRazor $out/bin
|
|
|
|
'';
|
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "http://posterazor.sourceforge.net/";
|
2014-08-24 07:21:08 -07:00
|
|
|
description = "Cuts a raster image into pieces which can afterwards be printed out and assembled to a poster";
|
2018-09-01 05:19:28 -07:00
|
|
|
maintainers = [ maintainers.madjar ];
|
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
platforms = platforms.linux;
|
2014-05-06 02:38:46 -07:00
|
|
|
};
|
|
|
|
}
|