nixpkgs/pkgs/tools/graphics/optar/default.nix

36 lines
884 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, imagemagick, libpng }:
2018-01-08 14:13:31 +00:00
2019-08-13 21:52:01 +00:00
stdenv.mkDerivation {
pname = "optar";
2018-01-08 14:13:31 +00:00
version = "20150210";
src = fetchurl {
url = "http://ronja.twibright.com/optar.tgz";
sha256 = "10lr31k3xfcpa6vxkbl3abph7j3gks2210489khnnzmhmfdnm1a4";
};
buildInputs = [ libpng ];
enableParallelBuilding = true;
postPatch = ''
substituteInPlace Makefile \
--replace /usr/local $out
substituteInPlace pgm2ps \
2021-01-15 09:19:50 +00:00
--replace 'convert ' "${lib.getBin imagemagick}/bin/convert "
2018-01-08 14:13:31 +00:00
'';
preInstall = ''
mkdir -p $out/bin
'';
meta = with lib; {
description = "OPTical ARchiver - it's a codec for encoding data on paper";
homepage = "http://ronja.twibright.com/optar/";
2018-01-08 14:13:31 +00:00
license = licenses.gpl2;
maintainers = with maintainers; [ peterhoeg ];
platforms = with platforms; linux; # possibly others, but only tested on Linux
};
}