djvu2pdf: make work in nix-shell

This commit is contained in:
Gabriel Ebner 2015-12-19 09:42:01 +01:00
parent af6732e503
commit 723e693791

View File

@ -1,4 +1,4 @@
{stdenv, fetchurl, pkgconfig, djvulibre, ghostscript }: { stdenv, makeWrapper, fetchurl, djvulibre, ghostscript, which }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
version = "0.9.2"; version = "0.9.2";
@ -9,12 +9,13 @@ stdenv.mkDerivation rec {
sha256 = "0v2ax30m7j1yi4m02nzn9rc4sn4vzqh5vywdh96r64j4pwvn5s5g"; sha256 = "0v2ax30m7j1yi4m02nzn9rc4sn4vzqh5vywdh96r64j4pwvn5s5g";
}; };
buildInputs = [ pkgconfig ]; nativeBuildInputs = [ makeWrapper ];
propagatedUserEnvPkgs = [ djvulibre ghostscript ];
installPhase = '' installPhase = ''
mkdir -p $out/bin mkdir -p $out/bin
cp -p djvu2pdf $out/bin cp -p djvu2pdf $out/bin
wrapProgram $out/bin/djvu2pdf --prefix PATH : ${ghostscript}/bin:${djvulibre}/bin:${which}/bin
mkdir -p $out/man/man1 mkdir -p $out/man/man1
cp -p djvu2pdf.1.gz $out/man/man1 cp -p djvu2pdf.1.gz $out/man/man1
''; '';
@ -23,6 +24,7 @@ stdenv.mkDerivation rec {
description = "Creates djvu files from PDF files"; description = "Creates djvu files from PDF files";
homepage = http://0x2a.at/s/projects/djvu2pdf; homepage = http://0x2a.at/s/projects/djvu2pdf;
license = stdenv.lib.licenses.gpl2; license = stdenv.lib.licenses.gpl2;
platforms = stdenv.lib.platforms.all;
inherit version; inherit version;
}; };
} }