summary refs log tree commit diff
path: root/pkgs/applications/misc
diff options
context:
space:
mode:
authorJan Tojnar <jtojnar@gmail.com>2018-08-30 01:20:59 +0200
committerJan Tojnar <jtojnar@gmail.com>2018-08-30 02:01:17 +0200
commit9a4240f8fbfa7554efe8a7b454d2089b0d4c21a3 (patch)
tree3ebc0e7b2ce4c95e0c0f952b58b847822b61913f /pkgs/applications/misc
parente25a73857bd55d7418092d425f54ece1fc0ba63e (diff)
downloadnixpkgs-9a4240f8fbfa7554efe8a7b454d2089b0d4c21a3.tar
nixpkgs-9a4240f8fbfa7554efe8a7b454d2089b0d4c21a3.tar.gz
nixpkgs-9a4240f8fbfa7554efe8a7b454d2089b0d4c21a3.tar.bz2
nixpkgs-9a4240f8fbfa7554efe8a7b454d2089b0d4c21a3.tar.lz
nixpkgs-9a4240f8fbfa7554efe8a7b454d2089b0d4c21a3.tar.xz
nixpkgs-9a4240f8fbfa7554efe8a7b454d2089b0d4c21a3.tar.zst
nixpkgs-9a4240f8fbfa7554efe8a7b454d2089b0d4c21a3.zip
font-manager: 0.7.3 → 0.7.3.1
Switch to fresher vala
Diffstat (limited to 'pkgs/applications/misc')
-rw-r--r--pkgs/applications/misc/font-manager/default.nix23
1 files changed, 12 insertions, 11 deletions
diff --git a/pkgs/applications/misc/font-manager/default.nix b/pkgs/applications/misc/font-manager/default.nix
index 1fad5333a14..54392b03bfb 100644
--- a/pkgs/applications/misc/font-manager/default.nix
+++ b/pkgs/applications/misc/font-manager/default.nix
@@ -1,17 +1,17 @@
 { stdenv, fetchFromGitHub, automake, autoconf, libtool,
   pkgconfig, file, intltool, libxml2, json-glib , sqlite, itstool,
-  librsvg, vala_0_34, gnome3, wrapGAppsHook, gobjectIntrospection
+  librsvg, vala, gnome3, wrapGAppsHook, gobjectIntrospection
 }:
 
 stdenv.mkDerivation rec {
   name = "font-manager-${version}";
-  version = "0.7.3";
+  version = "0.7.3.1";
 
   src = fetchFromGitHub {
-    owner  = "FontManager";
-    repo   = "master";
-    rev    = version;
-    sha256 = "0qwi1mn2sc2q5cs28rga8i3cn34ylybs949vjnh97dl2rvlc0x06";
+    owner = "FontManager";
+    repo = "master";
+    rev = version;
+    sha256 = "0i65br0bk3r6x8wcl8jhc0v0agl0k6fy5g60ss1bnw4md7ldpgyi";
     };
 
   nativeBuildInputs = [
@@ -19,7 +19,8 @@ stdenv.mkDerivation rec {
     automake autoconf libtool
     file
     intltool
-    vala_0_34
+    itstool
+    vala
     gnome3.yelp-tools
     wrapGAppsHook
     # For setup hook
@@ -30,12 +31,9 @@ stdenv.mkDerivation rec {
     libxml2
     json-glib
     sqlite
-    itstool
     librsvg
     gnome3.gtk
-    gnome3.gucharmap
     gnome3.libgee
-    gnome3.file-roller
     gnome3.defaultIconTheme
   ];
 
@@ -46,7 +44,10 @@ stdenv.mkDerivation rec {
     substituteInPlace configure --replace "/usr/bin/file" "${file}/bin/file"
   '';
 
-  configureFlags = [ "--disable-pycompile" ];
+  configureFlags = [
+    "--with-file-roller"
+    "--disable-pycompile"
+  ];
 
   meta = {
     homepage = https://fontmanager.github.io/;