summary refs log tree commit diff
path: root/pkgs/data/icons/capitaine-cursors/default.nix
diff options
context:
space:
mode:
authorIvar <ivar.scholten@protonmail.com>2020-11-02 21:10:53 +0100
committerIvarWithoutBones <ivar.scholten@protonmail.com>2020-11-02 22:39:14 +0100
commitf7fca06ef918343df846e02f8f0f8804f3e69b3e (patch)
tree4f38a05e33e76f7a4ec732a3293452036da01b77 /pkgs/data/icons/capitaine-cursors/default.nix
parente99270812fe82647c214543901025713789aaaf6 (diff)
downloadnixpkgs-f7fca06ef918343df846e02f8f0f8804f3e69b3e.tar
nixpkgs-f7fca06ef918343df846e02f8f0f8804f3e69b3e.tar.gz
nixpkgs-f7fca06ef918343df846e02f8f0f8804f3e69b3e.tar.bz2
nixpkgs-f7fca06ef918343df846e02f8f0f8804f3e69b3e.tar.lz
nixpkgs-f7fca06ef918343df846e02f8f0f8804f3e69b3e.tar.xz
nixpkgs-f7fca06ef918343df846e02f8f0f8804f3e69b3e.tar.zst
nixpkgs-f7fca06ef918343df846e02f8f0f8804f3e69b3e.zip
capitaine-cursors: fix build with inkscape => 1.0
Diffstat (limited to 'pkgs/data/icons/capitaine-cursors/default.nix')
-rw-r--r--pkgs/data/icons/capitaine-cursors/default.nix24
1 files changed, 16 insertions, 8 deletions
diff --git a/pkgs/data/icons/capitaine-cursors/default.nix b/pkgs/data/icons/capitaine-cursors/default.nix
index 09491b904ef..e57482b191b 100644
--- a/pkgs/data/icons/capitaine-cursors/default.nix
+++ b/pkgs/data/icons/capitaine-cursors/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchFromGitHub
+{ stdenv, fetchFromGitHub, fetchpatch, makeFontsConf
 , inkscape, xcursorgen, bc }:
 
 stdenv.mkDerivation rec {
@@ -12,11 +12,23 @@ stdenv.mkDerivation rec {
     sha256 = "0652ydy73x29z7wc6ccyqihmfg4bk0ksl7yryycln6c7i0iqfmc9";
   };
 
+  patches = [
+    # Fixes the build on inscape => 1.0, without this it generates empty cursor files
+    (fetchpatch {
+      name = "inkscape-1.0-compat";
+      url = "https://github.com/keeferrourke/capitaine-cursors/commit/9da0b53e6098ed023c5c24c6ef6bfb1f68a79924.patch";
+      sha256 = "0lx5i60ahy6a2pir4zzlqn5lqsv6claqg8mv17l1a028h9aha3cv";
+    })
+  ];
+
   postPatch = ''
     patchShebangs .
   '';
 
-  buildInputs  =[
+  # Complains about not being able to find the fontconfig config file otherwise
+  FONTCONFIG_FILE = makeFontsConf { fontDirectories = [ ]; };
+
+  buildInputs = [
     inkscape
     xcursorgen
     bc
@@ -36,14 +48,10 @@ stdenv.mkDerivation rec {
   '';
 
   meta = with stdenv.lib; {
-    description = ''
-      An x-cursor theme inspired by macOS and based on KDE Breeze
-    '';
+    description = "An x-cursor theme inspired by macOS and based on KDE Breeze";
     homepage = "https://github.com/keeferrourke/capitaine-cursors";
     license = licenses.lgpl3;
     platforms = platforms.linux;
-    maintainers = with maintainers; [
-      eadwu
-    ];
+    maintainers = with maintainers; [ eadwu ];
   };
 }