-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshell.nix
30 lines (23 loc) · 822 Bytes
/
shell.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{ nixpkgs ? import <nixpkgs> {}, compiler ? "default", doBenchmark ? false }:
let
inherit (nixpkgs) pkgs;
f = { stdenv, makeWrapper, lib, imagemagick, ghostscript }:
stdenv.mkDerivation {
pname = "pdf2png";
version = "0.1.0.0";
src = ./.;
nativeBuildInputs = [ makeWrapper ];
installPhase = ''
install -D pdf2png.sh $out/bin/pdf2png
'';
postFixup = ''
wrapProgram $out/bin/pdf2png --prefix PATH : ${lib.makeBinPath [ imagemagick ghostscript]}
'';
meta = {
homepage = "https://github.com/emmanuelrosa/pdf2png";
description = "A script for converting a PDF into PNGs.";
license = stdenv.lib.licenses.mit;
};
};
in
with pkgs; pkgs.callPackage f { inherit makeWrapper; }