about summary refs log tree commit diff
path: root/pkgs/data/icons/bibata-cursors/default.nix
diff options
context:
space:
mode:
authorPavol Rusnak <pavol@rusnak.io>2020-05-05 13:14:00 +0200
committerPavol Rusnak <pavol@rusnak.io>2020-07-19 13:10:16 +0200
commit8402a74cce2216de0fd2cce4e5fd897e5dedd450 (patch)
tree3b20025467d3f3c8f042ef138e4139eea77d27f2 /pkgs/data/icons/bibata-cursors/default.nix
parent5107b24c83a4c93df9ff25bc76ef64f5883720f9 (diff)
treewide: replace inkscape with inkscape_0
The Inkscape CLI interface has been changed with 1.x and packages
are not adjusted yet to this change. Let's use inkscape 0.x instead.
Diffstat (limited to 'pkgs/data/icons/bibata-cursors/default.nix')
-rw-r--r--pkgs/data/icons/bibata-cursors/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/data/icons/bibata-cursors/default.nix b/pkgs/data/icons/bibata-cursors/default.nix
index 66ed71f1f9ecb..670746d5d1a69 100644
--- a/pkgs/data/icons/bibata-cursors/default.nix
+++ b/pkgs/data/icons/bibata-cursors/default.nix
@@ -1,4 +1,4 @@
-{ stdenvNoCC, fetchFromGitHub, gnome-themes-extra, inkscape, xcursorgen, python3 }:
+{ stdenvNoCC, fetchFromGitHub, gnome-themes-extra, inkscape_0, xcursorgen, python3 }:
 
 let
   py = python3.withPackages(ps: [ ps.pillow ]);
@@ -25,7 +25,7 @@ in stdenvNoCC.mkDerivation rec {
 
   nativeBuildInputs  = [
     gnome-themes-extra
-    inkscape
+    inkscape_0
     xcursorgen
     py
   ];