Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
44 lines
964 B
Nix
44 lines
964 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
imagemagick,
|
|
libpng,
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "optar";
|
|
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 \
|
|
--replace 'convert ' "${lib.getBin imagemagick}/bin/convert "
|
|
'';
|
|
|
|
env.NIX_CFLAGS_COMPILE = toString [ "-Wno-error=implicit-int" ];
|
|
|
|
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/";
|
|
license = licenses.gpl2Only;
|
|
maintainers = with maintainers; [ peterhoeg ];
|
|
platforms = with platforms; linux; # possibly others, but only tested on Linux
|
|
};
|
|
}
|