tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
ipe: add missing libjpeg dependency
Thomas Tuegel
10 years ago
f0a11cd1
7203497c
+2
-1
1 changed file
expand all
collapse all
unified
split
pkgs
applications
graphics
ipe
default.nix
+2
-1
pkgs/applications/graphics/ipe/default.nix
···
1
{ stdenv, fetchurl, pkgconfig, zlib, qt4, freetype, cairo, lua5, texLive, ghostscriptX
0
2
, makeWrapper }:
3
let ghostscript = ghostscriptX; in
4
stdenv.mkDerivation rec {
···
24
LUA_PACKAGE = "lua";
25
26
buildInputs = [
27
-
pkgconfig zlib qt4 freetype cairo lua5 texLive ghostscript makeWrapper
28
];
29
30
postInstall = ''
···
1
{ stdenv, fetchurl, pkgconfig, zlib, qt4, freetype, cairo, lua5, texLive, ghostscriptX
2
+
, libjpeg
3
, makeWrapper }:
4
let ghostscript = ghostscriptX; in
5
stdenv.mkDerivation rec {
···
25
LUA_PACKAGE = "lua";
26
27
buildInputs = [
28
+
libjpeg pkgconfig zlib qt4 freetype cairo lua5 texLive ghostscript makeWrapper
29
];
30
31
postInstall = ''