about summary refs log tree commit diff
path: root/pkgs/data/themes/mojave
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/themes/mojave
parent5107b24c83a4c93df9ff25bc76ef64f5883720f9 (diff)
downloadnixlib-8402a74cce2216de0fd2cce4e5fd897e5dedd450.tar
nixlib-8402a74cce2216de0fd2cce4e5fd897e5dedd450.tar.gz
nixlib-8402a74cce2216de0fd2cce4e5fd897e5dedd450.tar.bz2
nixlib-8402a74cce2216de0fd2cce4e5fd897e5dedd450.tar.lz
nixlib-8402a74cce2216de0fd2cce4e5fd897e5dedd450.tar.xz
nixlib-8402a74cce2216de0fd2cce4e5fd897e5dedd450.tar.zst
nixlib-8402a74cce2216de0fd2cce4e5fd897e5dedd450.zip
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/themes/mojave')
-rw-r--r--pkgs/data/themes/mojave/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/data/themes/mojave/default.nix b/pkgs/data/themes/mojave/default.nix
index 751dd690d114..a98218b63925 100644
--- a/pkgs/data/themes/mojave/default.nix
+++ b/pkgs/data/themes/mojave/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchFromGitHub, fetchurl, glib, gtk-engine-murrine, gtk_engines, inkscape, optipng, sassc, which }:
+{ stdenv, fetchFromGitHub, fetchurl, glib, gtk-engine-murrine, gtk_engines, inkscape_0, optipng, sassc, which }:
 
 stdenv.mkDerivation rec {
   pname = "mojave-gtk-theme";
@@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
 
   sourceRoot = "source";
 
-  nativeBuildInputs = [ glib inkscape optipng sassc which ];
+  nativeBuildInputs = [ glib inkscape_0 optipng sassc which ];
 
   buildInputs = [ gtk_engines ];
 
@@ -36,7 +36,7 @@ stdenv.mkDerivation rec {
              src/assets/xfwm4/render-assets.sh
     do
       substituteInPlace $f \
-        --replace /usr/bin/inkscape ${inkscape}/bin/inkscape \
+        --replace /usr/bin/inkscape ${inkscape_0}/bin/inkscape \
         --replace /usr/bin/optipng ${optipng}/bin/optipng
     done