summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/graphics/fbida
diff options
context:
space:
mode:
authorPascal Wittmann <mail@pascal-wittmann.de>2016-11-27 17:07:01 +0100
committerPascal Wittmann <mail@pascal-wittmann.de>2016-11-27 17:07:47 +0100
commitbbd39a8057a4cfd32ac6db41ac922804dcf6dd5e (patch)
tree2a9c9b26f458327f23095cdf7a2b3865c7d51592 /pkgs/applications/graphics/fbida
parentd24a886419ce40e79daaf1f910a5bc861db4db0b (diff)
fbida: 2.11 -> 2.12
Diffstat (limited to 'pkgs/applications/graphics/fbida')
-rw-r--r--pkgs/applications/graphics/fbida/default.nix16
1 files changed, 7 insertions, 9 deletions
diff --git a/pkgs/applications/graphics/fbida/default.nix b/pkgs/applications/graphics/fbida/default.nix
index 65209cbd6ffe..75033cf0f9d6 100644
--- a/pkgs/applications/graphics/fbida/default.nix
+++ b/pkgs/applications/graphics/fbida/default.nix
@@ -1,20 +1,18 @@
{ stdenv, fetchurl, libjpeg, libexif, libungif, libtiff, libpng, libwebp, libdrm
-, pkgconfig, freetype, fontconfig, which, imagemagick, curl, sane-backends
-}:
+, pkgconfig, freetype, fontconfig, which, imagemagick, curl, sane-backends, libXpm
+, epoxy, poppler }:
stdenv.mkDerivation rec {
- name = "fbida-2.11";
+ name = "fbida-2.12";
src = fetchurl {
url = "http://dl.bytesex.org/releases/fbida/${name}.tar.gz";
- sha256 = "00x1lppb66b0gvp6sqs7zjgnlfh80lnkwvsm15ifzvlss3b67akw";
+ sha256 = "0bw224vb7jh0lrqaf4jgxk48xglvxs674qcpj5y0axyfbh896cfk";
};
nativeBuildInputs = [ pkgconfig which ];
- buildInputs =
- [ libexif libjpeg libpng libungif freetype fontconfig libtiff libwebp
- imagemagick curl sane-backends libdrm
- ];
+ buildInputs = [ libexif libjpeg libpng libungif freetype fontconfig libtiff
+ libwebp imagemagick curl sane-backends libdrm libXpm epoxy poppler ];
makeFlags = [ "prefix=$(out)" "verbose=yes" ];
@@ -34,6 +32,6 @@ stdenv.mkDerivation rec {
homepage = https://www.kraxel.org/blog/linux/fbida/;
license = licenses.gpl2;
maintainers = with maintainers; [ pSub ];
- platforms = with platforms; linux;
+ platforms = platforms.linux;
};
}