nixpkgs/pkgs/applications/misc/posterazor/default.nix

39 lines
1.1 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, cmake, unzip, pkg-config, libXpm, fltk13, freeimage }:
2019-08-13 21:52:01 +00:00
stdenv.mkDerivation {
2014-08-25 10:16:18 +00:00
name = "posterazor-1.5.1";
src = fetchurl {
2014-08-25 10:16:18 +00:00
url = "mirror://sourceforge/posterazor/1.5.1/PosteRazor-1.5.1-Source.zip";
sha256 = "1dqpdk8zl0smdg4fganp3hxb943q40619qmxjlga9jhjc01s7fq5";
};
hardeningDisable = [ "format" ];
2016-02-12 15:39:09 +00:00
nativeBuildInputs = [ cmake pkg-config unzip ];
buildInputs = [ libXpm fltk13 freeimage ];
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
'';
2018-09-01 12:19:28 +00:00
meta = with stdenv.lib; {
homepage = "http://posterazor.sourceforge.net/";
description = "Cuts a raster image into pieces which can afterwards be printed out and assembled to a poster";
2018-09-01 12:19:28 +00:00
maintainers = [ maintainers.madjar ];
license = licenses.gpl3Plus;
platforms = platforms.linux;
};
}