about summary refs log tree commit diff
path: root/pkgs/applications/graphics/fbida
diff options
context:
space:
mode:
authorPascal Wittmann <mail@pascal-wittmann.de>2018-07-04 21:48:48 +0200
committerPascal Wittmann <mail@pascal-wittmann.de>2018-07-04 21:49:22 +0200
commit2fa3fa023f6bbbbe6447a486e2480793ff8abecf (patch)
treecee5a19c6a08e7f31921c0f78ffa81aef29ddd69 /pkgs/applications/graphics/fbida
parentfb29756259eaf7004e0a791df16ee4bfd3b8f713 (diff)
fbida: 2.13 -> 2.14
Diffstat (limited to 'pkgs/applications/graphics/fbida')
-rw-r--r--pkgs/applications/graphics/fbida/default.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/pkgs/applications/graphics/fbida/default.nix b/pkgs/applications/graphics/fbida/default.nix
index 2e91f7873501d..33d65a860764e 100644
--- a/pkgs/applications/graphics/fbida/default.nix
+++ b/pkgs/applications/graphics/fbida/default.nix
@@ -3,11 +3,11 @@
 , epoxy, poppler, mesa_noglu, lirc }:
 
 stdenv.mkDerivation rec {
-  name = "fbida-2.13";
+  name = "fbida-2.14";
   
   src = fetchurl {
     url = "http://dl.bytesex.org/releases/fbida/${name}.tar.gz";
-    sha256 = "01yv4qqqfbz9v281y2jlxhxdym3ricyb0zkqkgp5b40qrmfik1x8";
+    sha256 = "0f242mix20rgsqz1llibhsz4r2pbvx6k32rmky0zjvnbaqaw1dwm";
   };
 
   nativeBuildInputs = [ pkgconfig which ];
@@ -17,12 +17,12 @@ stdenv.mkDerivation rec {
     mesa_noglu
   ];
   
-  makeFlags = [ "prefix=$(out)" "verbose=yes" "STRIP=" ];
+  makeFlags = [ "prefix=$(out)" "verbose=yes" "STRIP=" "JPEG_VER=62" ];
 
-  patchPhase =
-    ''
+  patchPhase = ''
     sed -e 's@ cpp\>@ gcc -E -@' -i GNUmakefile
-    '';
+    sed -e 's@$(HAVE_LINUX_FB_H)@yes@' -i GNUmakefile
+  '';
 
   meta = with stdenv.lib; {
     description = "Image viewing and manipulation programs";