about summary refs log tree commit diff
path: root/pkgs/applications/editors/bluefish
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2017-01-14 16:32:16 +0100
committerVincent Laporte <Vincent.Laporte@gmail.com>2017-01-14 16:33:02 +0100
commit503329e0506d1e21000e03241e12809fed46c249 (patch)
tree1e49b82003b2c16738da10bb3ed882518809d18e /pkgs/applications/editors/bluefish
parent2fe19b18e84d990c611b421c7fd5b5abac302077 (diff)
bluefish: 2.2.7 -> 2.2.9
And fix some missing icons
Diffstat (limited to 'pkgs/applications/editors/bluefish')
-rw-r--r--pkgs/applications/editors/bluefish/default.nix11
1 files changed, 6 insertions, 5 deletions
diff --git a/pkgs/applications/editors/bluefish/default.nix b/pkgs/applications/editors/bluefish/default.nix
index 25538df0384d8..59e8076c787be 100644
--- a/pkgs/applications/editors/bluefish/default.nix
+++ b/pkgs/applications/editors/bluefish/default.nix
@@ -1,16 +1,17 @@
-{ stdenv, fetchurl, intltool, pkgconfig , gtk, libxml2
-, enchant, gucharmap, python
+{ stdenv, fetchurl, intltool, wrapGAppsHook, pkgconfig , gtk, libxml2
+, enchant, gucharmap, python, gnome3
 }:
 
 stdenv.mkDerivation rec {
-  name = "bluefish-2.2.7";
+  name = "bluefish-2.2.9";
 
   src = fetchurl {
     url = "mirror://sourceforge/bluefish/${name}.tar.bz2";
-    sha256 = "1psqx3ljz13ylqs4zkaxv9lv1hgzld6904kdp0alwx99p5rlnlr3";
+    sha256 = "1l7pg6h485yj84i34jr09y8qzc1yr4ih6w5jdhmnrg156db7nwav";
   };
 
-  buildInputs = [ intltool pkgconfig gtk libxml2
+  nativeBuildInputs = [ intltool pkgconfig wrapGAppsHook ];
+  buildInputs = [ gnome3.defaultIconTheme gtk libxml2
     enchant gucharmap python ];
 
   meta = with stdenv.lib; {