2021-01-11 08:54:33 +01:00
|
|
|
{ lib, stdenv, fetchurl, cmake, unzip, pkg-config, libXpm, fltk13, freeimage }:
|
2014-05-06 11:38:46 +02:00
|
|
|
|
2021-11-07 21:29:51 +01:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "posterazor";
|
|
|
|
version = "1.5.1";
|
2014-05-06 11:38:46 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-11-07 21:29:51 +01:00
|
|
|
url = "mirror://sourceforge/posterazor/${version}/PosteRazor-${version}-Source.zip";
|
2014-08-25 12:16:18 +02:00
|
|
|
sha256 = "1dqpdk8zl0smdg4fganp3hxb943q40619qmxjlga9jhjc01s7fq5";
|
2014-05-06 11:38:46 +02:00
|
|
|
};
|
|
|
|
|
2016-02-26 18:38:15 +01:00
|
|
|
hardeningDisable = [ "format" ];
|
2016-02-12 16:39:09 +01:00
|
|
|
|
2020-12-31 08:48:55 +01:00
|
|
|
nativeBuildInputs = [ cmake pkg-config unzip ];
|
|
|
|
buildInputs = [ libXpm fltk13 freeimage ];
|
2014-05-06 11:38:46 +02: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-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "http://posterazor.sourceforge.net/";
|
2014-08-24 16:21:08 +02:00
|
|
|
description = "Cuts a raster image into pieces which can afterwards be printed out and assembled to a poster";
|
2018-09-01 14:19:28 +02:00
|
|
|
maintainers = [ maintainers.madjar ];
|
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
platforms = platforms.linux;
|
2014-05-06 11:38:46 +02:00
|
|
|
};
|
|
|
|
}
|